+
@@ -66,7 +66,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/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
+
+
+
-