diff --git a/public/views/modals/tx-details.html b/public/views/modals/tx-details.html
index 059896384..6b578f101 100644
--- a/public/views/modals/tx-details.html
+++ b/public/views/modals/tx-details.html
@@ -67,7 +67,7 @@
-
+
Signatures
-
@@ -75,7 +75,7 @@
- {{c.copayerName}}
+ {{c.copayerName}} ({{'Me'|translate}})
diff --git a/public/views/modals/txp-details.html b/public/views/modals/txp-details.html
index 45e19263c..774e8834c 100644
--- a/public/views/modals/txp-details.html
+++ b/public/views/modals/txp-details.html
@@ -70,7 +70,7 @@
-
- {{ac.copayerName}}
+ {{ac.copayerName}} ({{'Me'|translate}})
diff --git a/public/views/preferencesAbout.html b/public/views/preferencesAbout.html
index d5b415dcc..5df5745d0 100644
--- a/public/views/preferencesAbout.html
+++ b/public/views/preferencesAbout.html
@@ -28,7 +28,7 @@
-
- View session logs
+ Session logs
diff --git a/public/views/preferencesLogs.html b/public/views/preferencesLogs.html
index 192a6837c..f1e49249d 100644
--- a/public/views/preferencesLogs.html
+++ b/public/views/preferencesLogs.html
@@ -1,7 +1,7 @@
+ ng-init="titleSection='Session logs'; goBackToState = 'about'">
diff --git a/public/views/walletHome.html b/public/views/walletHome.html
index a06c86496..d3317b872 100644
--- a/public/views/walletHome.html
+++ b/public/views/walletHome.html
@@ -106,14 +106,22 @@
Preferences
-
-
- {{index.m}} of {{index.n}}
-
-
-
Multisignature wallet
-
Personal Wallet
-
- Testnet
+
+
+
+ {{index.m}} of {{index.n}}
+
+
+ Multisignature wallet - Testnet
+
+
+
+
+ {{index.m}} of {{index.n}}
+
+
+ Personal Wallet - Testnet
+
diff --git a/src/js/controllers/walletHome.js b/src/js/controllers/walletHome.js
index cf35c0bb3..c6508da75 100644
--- a/src/js/controllers/walletHome.js
+++ b/src/js/controllers/walletHome.js
@@ -131,6 +131,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
$scope.amountStr = tx.amountStr;
$scope.alternativeAmountStr = tx.alternativeAmountStr;
$scope.copayers = copayers
+ $scope.copayerId = fc.credentials.copayerId;
$scope.loading = null;
$scope.color = fc.backgroundColor;
@@ -840,6 +841,8 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
$scope.btx = btx;
$scope.settings = config;
$scope.color = fc.backgroundColor;
+ $scope.copayerId = fc.credentials.copayerId;
+ $scope.isShared = fc.credentials.n > 1;
$scope.getAmount = function(amount) {
return self.getAmount(amount);