summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorskjnldsv <fremulon@protonmail.com>2016-09-03 16:30:24 +0200
committerskjnldsv <fremulon@protonmail.com>2016-09-03 16:30:24 +0200
commit8d05ceb9c9e7d8e5a69232df0b3e803ee34f4a85 (patch)
tree9b581bd674be7302bf21fd04e0cecd1464fee1fa /js
parent022a0e80f6165825c06f93ff2e4bd85741a00faa (diff)
Bigger add symbol and button translation fix
Diffstat (limited to 'js')
-rw-r--r--js/components/contactList/contactList_controller.js1
-rw-r--r--js/components/newContactButton/newContactButton_controller.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/js/components/contactList/contactList_controller.js b/js/components/contactList/contactList_controller.js
index 72c5d2de..8d144081 100644
--- a/js/components/contactList/contactList_controller.js
+++ b/js/components/contactList/contactList_controller.js
@@ -10,7 +10,6 @@ angular.module('contactsApp')
ctrl.invalid = false;
ctrl.t = {
- addContact : t('contacts', '+ New contact'),
emptySearch : t('contacts', 'No search result for {query}', {query: ctrl.searchTerm})
};
diff --git a/js/components/newContactButton/newContactButton_controller.js b/js/components/newContactButton/newContactButton_controller.js
index 263059c0..9566974c 100644
--- a/js/components/newContactButton/newContactButton_controller.js
+++ b/js/components/newContactButton/newContactButton_controller.js
@@ -3,7 +3,7 @@ angular.module('contactsApp')
var ctrl = this;
ctrl.t = {
- addContact : t('contacts', '+ New contact')
+ addContact : t('contacts', 'New contact')
};
ctrl.createContact = function() {