summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2020-04-02 12:36:44 +0200
committerGitHub <noreply@github.com>2020-04-02 12:36:44 +0200
commit405aa2e5301788ceb9e3d23fcf9cd3d8c7c1b5c2 (patch)
tree17cc9776adb4a0c68cc9c71dc4a72acc1a4eb771 /src
parent128f6a1f388b936738d18925e6b66f21b19442ac (diff)
Correction of descriptions
Correcting words: address book.
Diffstat (limited to 'src')
-rw-r--r--src/components/Settings/SettingsAddressbook.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/Settings/SettingsAddressbook.vue b/src/components/Settings/SettingsAddressbook.vue
index 0b86134c..17f15122 100644
--- a/src/components/Settings/SettingsAddressbook.vue
+++ b/src/components/Settings/SettingsAddressbook.vue
@@ -195,7 +195,7 @@ export default {
} catch (err) {
// error handling
console.error(err)
- OC.Notification.showTemporary(t('contacts', 'Toggling of addressbook was not successful'))
+ OC.Notification.showTemporary(t('contacts', 'Toggling of address book was not successful'))
} finally {
// stop loading status regardless of outcome
this.toggleEnabledLoading = false
@@ -204,7 +204,7 @@ export default {
confirmDeletion() {
OC.dialogs.confirm(
- t('contacts', 'This will delete the addressbook and every contacts within it'),
+ t('contacts', 'This will delete the address book and every contacts within it'),
t('contacts', 'Delete {addressbook} ?', { addressbook: this.addressbook.displayName }),
this.deleteAddressbook,
true
@@ -220,7 +220,7 @@ export default {
} catch (err) {
// error handling
console.error(err)
- OC.Notification.showTemporary(t('contacts', 'Deletion of addressbook was not successful.'))
+ OC.Notification.showTemporary(t('contacts', 'Deletion of address book was not successful.'))
} finally {
// stop loading status regardless of outcome
this.deleteAddressbookLoading = false
@@ -241,7 +241,7 @@ export default {
} catch (err) {
// error handling
console.error(err)
- OC.Notification.showTemporary(t('contacts', 'Renaming of addressbook was not successful.'))
+ OC.Notification.showTemporary(t('contacts', 'Renaming of address book was not successful.'))
} finally {
this.editingName = false
// stop loading status regardless of outcome
@@ -260,11 +260,11 @@ export default {
this.copySuccess = true
this.copied = true
// Notify addressbook was copied
- OC.Notification.showTemporary(t('contacts', 'Addressbook copied to clipboard'))
+ OC.Notification.showTemporary(t('contacts', 'Address book copied to clipboard'))
} catch (error) {
this.copySuccess = false
this.copied = true
- OC.Notification.showTemporary(t('contacts', 'Addressbook was not copied to clipboard.'))
+ OC.Notification.showTemporary(t('contacts', 'Address book was not copied to clipboard.'))
} finally {
this.copyLoading = false
setTimeout(() => {