summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--js/services/contact_service.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/services/contact_service.js b/js/services/contact_service.js
index 6a1a8147..3ea2e5f0 100644
--- a/js/services/contact_service.js
+++ b/js/services/contact_service.js
@@ -180,7 +180,7 @@ angular.module('contactsApp')
this.create = function(newContact, addressBook, uid, fromImport) {
addressBook = addressBook || AddressBookService.getDefaultAddressBook();
if(addressBook.readOnly) {
- OC.Notification.showTemporary(t('contacts', 'You don\'t have permission to write to this addressbook.'));
+ OC.Notification.showTemporary(t('contacts', 'You have no permission to make changes to this address book.'));
return;
}
try {
@@ -272,7 +272,7 @@ angular.module('contactsApp')
return;
}
if(addressBook.readOnly) {
- OC.Notification.showTemporary(t('contacts', 'You don\'t have permission to write to this addressbook.'));
+ OC.Notification.showTemporary(t('contacts', 'You have no permission to make changes to this address book.'));
return;
}
contact.syncVCard();