From 55f26590bca6a3397fa2b4c2bef1e57114c202e0 Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Sun, 20 Apr 2014 21:40:03 -0300 Subject: [PATCH 1/2] use "info" instead of "warning", which is more pleasant ...and update a typo: signning -> signing --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 0aaa11793..ece511429 100644 --- a/index.html +++ b/index.html @@ -55,9 +55,9 @@
-
+
- NOTE: Your wallet is not complete yet. + Note: Your wallet is not complete yet. {{$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers() }} keys are @@ -189,8 +189,8 @@

Online Copayers: {{$root.wallet.network.connectedPeers.length}}

-

- {{$root.wallet.publicKeyRing.requiredCopayers}} copayers needed for signning transactions +

+ {{$root.wallet.publicKeyRing.requiredCopayers}} copayers needed for signing transactions

    From 9d149b8394d45e272d48ce852dbbb349bdf1d6da Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Sun, 20 Apr 2014 22:05:25 -0300 Subject: [PATCH 2/2] another typo --- js/controllers/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controllers/send.js b/js/controllers/send.js index cd6226bdb..91cf5d297 100644 --- a/js/controllers/send.js +++ b/js/controllers/send.js @@ -35,7 +35,7 @@ angular.module('copay.send').controller('SendController', form.amount.$pristine = true; // TODO: check if createTx has an error. - $rootScope.flashMessage = { message: 'You send a proposal transaction succefully', type: 'success'}; + $rootScope.flashMessage = { message: 'Your transaction proposal has been sent successfully', type: 'success'}; }; });