Skip to content
This repository has been archived by the owner on Jan 3, 2019. It is now read-only.

Commit

Permalink
i18n: include period in keys
Browse files Browse the repository at this point in the history
  • Loading branch information
weilu committed Aug 2, 2014
1 parent da3e2e6 commit 798b28f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions app/lib/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"Create new wallet": "Create new wallet",
"Open existing wallet": "Open existing wallet",
"We are about to generate your very own passphrase": "We're about to generate your very own passphrase",
"This keeps your account secure, and lets you open your wallet on multiple devices": "This keeps your account secure, and lets you open your wallet on multiple devices.",
"It is very important you write this down": "It's very important you write this down.",
"This keeps your account secure, and lets you open your wallet on multiple devices.": "This keeps your account secure, and lets you open your wallet on multiple devices.",
"It is very important you write this down.": "It's very important you write this down.",
"Generate passphrase": "Generate passphrase",
"Go back": "Go back",
"Generating": "Generating",
"Decoding seed phrase": "Decoding seed phrase",
"Synchronizing Wallet": "Synchronizing Wallet",
"Set your PIN": "Set your PIN",
"Your passphrase": "Your passphrase",
"Your passphrase will not be shown again": "Your passphrase will not be shown again.",
"Without it you will lose access to your wallet": "Without it you will lose access to your wallet.",
"Your passphrase will not be shown again.": "Your passphrase will not be shown again.",
"Without it you will lose access to your wallet.": "Without it you will lose access to your wallet.",
"I have written down or otherwise securely stored my passphrase": "I have written down or otherwise securely stored my passphrase",
"Open wallet": "Open wallet",
"Checking passphrase": "Checking passphrase",
Expand All @@ -29,12 +29,12 @@
"This might take some time,": "This might take some time,",
"please be patient.": "please be patient.",
"Your PIN is incorrect": "Your PIN is incorrect",
"Request timeout. Please check your internet connection": "Request timeout. Please check your internet connection.",
"Request timeout. Please check your internet connection.": "Request timeout. Please check your internet connection.",
"Could not save your details": "Could not save your details",
"We could not connect you to Waggle, please check your internet connection": "We couldn't connect you to Waggle, please check your internet connection.",
"We could not connect you to Waggle, please check your internet connection.": "We couldn't connect you to Waggle, please check your internet connection.",
"Please enter a valid address to send to": "Please enter a valid address to send to",
"Please enter an amount above": "Please enter an amount above %(dust)s",
"Some funds are temporarily unavailable. To send this transaction, you will need to wait for your pending transactions to be confirmed first (this should not take more than a few minutes)": "Some funds are temporarily unavailable. To send this transaction, you'll need to wait for your pending transactions to be confirmed first (this shouldn't take more than a few minutes).",
"Some funds are temporarily unavailable. To send this transaction, you will need to wait for your pending transactions to be confirmed first (this should not take more than a few minutes).": "Some funds are temporarily unavailable. To send this transaction, you'll need to wait for your pending transactions to be confirmed first (this shouldn't take more than a few minutes).",
"What does this mean?": "What does this mean?",
"It seems like you are trying to empty your wallet. Taking transaction fee into account, we estimated that the max amount you can send is. We have amended the value in the amount field for you": "It seems like you are trying to empty your wallet. Taking transaction fee into account, we estimated that the max amount you can send is %(sendableBalance)s. We have amended the value in the amount field for you.",
"You do not have enough funds in your wallet": "You don't have enough funds in your wallet",
Expand All @@ -44,7 +44,7 @@
"Just saying...": "Just saying...",
"Your browser does not support geolocation": "Your browser does not support geolocation",
"Unable to retrieve your location": "Unable to retrieve your location",
"Without a name, the payer would not be able to identify you on waggle": "Without a name, the payer wouldn't be able to identify you on waggle.",
"Without a name, the payer would not be able to identify you on waggle.": "Without a name, the payer wouldn't be able to identify you on waggle.",
"cannot be blank": "%(blankField)s cannot be blank",
"name": "name",
"email": "email",
Expand Down
2 changes: 1 addition & 1 deletion app/lib/wallet/validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function validateSend(wallet, to, btcValue, callback){
var error

if(sufficientWithPending(needed) || (spendAll && hasPendingUtxo())){
error = new Error("Some funds are temporarily unavailable. To send this transaction, you will need to wait for your pending transactions to be confirmed first (this should not take more than a few minutes)")
error = new Error("Some funds are temporarily unavailable. To send this transaction, you will need to wait for your pending transactions to be confirmed first (this should not take more than a few minutes).")
error.href = "https://github.com/hivewallet/hive-osx/wiki/Sending-Bitcoin-from-a-pending-transaction"
error.linkText = "What does this mean?"
return callback(error)
Expand Down
2 changes: 1 addition & 1 deletion app/lib/xhr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function makeRequest(params, callback){

xhr(params, function(err){
if(err && err.message === 'Internal XMLHttpRequest Error') {
return showError({ message: "Request timeout. Please check your internet connection" })
return showError({ message: "Request timeout. Please check your internet connection." })
}
callback.apply(null, arguments)
})
Expand Down
2 changes: 1 addition & 1 deletion app/pages/receive/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module.exports = function(el){

var data = {
title: 'Uh Oh...',
message: "We could not connect you to Waggle, please check your internet connection"
message: "We could not connect you to Waggle, please check your internet connection."
}

showError(data)
Expand Down
4 changes: 2 additions & 2 deletions app/widgets/auth/create-confirm/header.ract
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<p class="_passphrase">{{passphrase}}</p>


<div class="passphrase__warning">{{translate("Your passphrase will not be shown again")}}<br />
{{translate("Without it you will lose access to your wallet")}}</div>
<div class="passphrase__warning">{{translate("Your passphrase will not be shown again.")}}<br />
{{translate("Without it you will lose access to your wallet.")}}</div>
<div class="passphrase__accept">
<div id="check" class="_checkbox" on-click="toggle-check">
{{#checked}}
Expand Down
2 changes: 1 addition & 1 deletion app/widgets/auth/create-intro/header.ract
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<h2 class="_subtitle">{{translate("We are about to generate your very own passphrase")}}</h2>
<p class="_text">{{translate("This keeps your account secure, and lets you open your wallet on multiple devices")}}<br/> {{translate("It is very important you write this down")}}</p>
<p class="_text">{{translate("This keeps your account secure, and lets you open your wallet on multiple devices.")}}<br/> {{translate("It is very important you write this down.")}}</p>
2 changes: 1 addition & 1 deletion app/widgets/modal-set-details/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function openModal(data){
}

if(!details.firstName || details.firstName.trim() === 'undefined') {
return showError({message: "Without a name, the payer would not be able to identify you on waggle"})
return showError({message: "Without a name, the payer would not be able to identify you on waggle."})

This comment has been minimized.

Copy link
@mackuba

mackuba Aug 5, 2014

Member

Shouldn't Waggle be capitalized here?...

This comment has been minimized.

Copy link
@weilu

weilu Aug 5, 2014

Author Member

Indeed. Will update

}

db.set('userInfo', details, function(err){
Expand Down

0 comments on commit 798b28f

Please sign in to comment.