Skip to content

Commit

Permalink
Merge branch 'bip44' of https://github.com/darkwallet/darkwallet into…
Browse files Browse the repository at this point in the history
… bip44
  • Loading branch information
caedesvvv committed Nov 4, 2014
2 parents 9d75803 + 5db99a8 commit 4e286f4
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 47 deletions.
4 changes: 2 additions & 2 deletions html/partials/lobby.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ <h4>{{'Channels'|_}}</h4>
<h4 ng-show="peerRequests.length">{{'Requests'|_}}</h4>
<div ng-show="peerRequests.length">
<select class="select-list" size="10">
<option ng-click="openRequest(request)" ng-selected="selectedRequest == request" ng-repeat="request in peerRequests">{{'{0} from {1}'|_:request.type:request.body.nick}}</option>
<option ng-click="openRequest(request)" ng-selected="selectedRequest == request" ng-repeat="request in peerRequests">{{request.type == 'Pair' ? ('Pair from {0}'|_:request.body.nick) : ('Beacon from {0}'|_:request.body.nick)}}</option>
</select>
</div>
</div>

<!-- Request window -->
<div ng-show="selectedRequest && (selectedRequest.type == 'Pair')" class="medium-7 columns">
<h2>{{selectedRequest.type}} {{'Request'|_}}</h2>
<h2>{{'Pair request'|_}}</h2>
<form>
<div class="wrapper"><face title="{{selectedRequest.peer.name}}" hash="selectedRequest.peer.pubKeyHex" icon-size="32"></face> <input type="text" ng-model="selectedRequest.nick"></input></div>
</form>
Expand Down
2 changes: 1 addition & 1 deletion html/partials/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h5>{{'Change your password'|_}}</h5>
</form>
<h5 ng-show="settings.advanced">{{'Mixing'|_}}</h5>
<div ng-show="settings.advanced">
<input id="checkbox-mixer" title="{{'If mixing is enabled when sending, will only send if successfull mixing, otherwise will just not send'|_}}" ng-model="settings.hardMixing" ng-change="storeSettings()" type="checkbox"><label for="checkbox-mixer">Enforced mixing</label><br>
<input id="checkbox-mixer" title="{{'If mixing is enabled when sending, will only send if successfull mixing, otherwise will just not send'|_}}" ng-model="settings.hardMixing" ng-change="storeSettings()" type="checkbox"><label for="checkbox-mixer">{{'Enforced mixing'|_}}</label><br>
</div>

</div>
Expand Down
2 changes: 1 addition & 1 deletion html/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</a>
</div>
<div ng-show="!identities.length" ng-cloak class="small-12 columns">
<h6>Welcome to Darkwallet! Let's get started:
<h6>{{'Welcome to Darkwallet! Let\'s get started:'|_}}
<a href="index.html#new_wallet" target="_blank" class="button small radius expand">
{{'Create wallet'|_}}
</a>
Expand Down
7 changes: 5 additions & 2 deletions i18n/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"Bad password: ": "Bad password: ",
"Balance": "Balance",
"Base unit": "Base unit",
"Beacon from {0}": "Beacon from {0}",
"Beacon!": "Beacon!",
"Beacons will be sent and received automatically [friend]": "Beacons will be sent and received automatically [friend]",
"Below dust threshold": "Below dust threshold",
Expand Down Expand Up @@ -120,6 +121,7 @@
"Edit name": "Edit name",
"Enable animations": "Enable animations",
"Enable developer mode": "Enable developer mode",
"Enforced mixing": "Enforced mixing",
"Enter IP address (e.g: 80.34.132.23:2534)": "Enter IP address (e.g: 80.34.132.23:2534)",
"Enter a bitcoin address here or use the buttons on the right.": "Enter a bitcoin address here or use the buttons on the right.",
"Enter a bitcoin address here...": "Enter a bitcoin address here...",
Expand Down Expand Up @@ -266,6 +268,8 @@
"Outgoing": "Outgoing",
"Outputs": "Outputs",
"Overview": "Overview",
"Pair from {0}": "Pair from {0}",
"Pair request": "Pair request",
"Paranoid": "Paranoid",
"Participants": "Participants",
"Password": "Password",
Expand Down Expand Up @@ -296,7 +300,6 @@
"Rename": "Rename",
"Repeat new password": "Repeat new password",
"Repeat password": "Repeat password",
"Request": "Request",
"Request for identification": "Request for identification",
"Requesting information from the server... please wait": "Requesting information from the server... please wait",
"Requesting my own public key": "Requesting my own public key",
Expand Down Expand Up @@ -432,6 +435,7 @@
"Watch-only pockets": "Watch-only pockets",
"Week": "Week",
"Weekly": "Weekly",
"Welcome to Darkwallet! Let's get started:": "Welcome to Darkwallet! Let's get started:",
"Write an address to export just one.": "Write an address to export just one.",
"Write the 12 words here...": "Write the 12 words here...",
"Write the password for your pocket": "Write the password for your pocket",
Expand Down Expand Up @@ -508,7 +512,6 @@
"unused": "unused",
"{0} added to contacts": "{0} added to contacts",
"{0} confirmations": "{0} confirmations",
"{0} from {1}": "{0} from {1}",
"{0} has been deleted.": "{0} has been deleted.",
"{0} keys": "{0} keys",
"{0} of {1}": "{0} of {1}",
Expand Down

0 comments on commit 4e286f4

Please sign in to comment.