diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-09-23 20:13:15 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-09-23 20:13:27 +0200 |
commit | d3fedc14e2b70a3725ec3c3335f70c3a1fdc677d (patch) | |
tree | dfeb10b694160fc9b8abe714a33e4175cc57f226 /apps/contacts/ajax/deletecard.php | |
parent | b73f72f62ccedeed1fa301856454d78566c650f1 (diff) | |
download | nextcloud-server-d3fedc14e2b70a3725ec3c3335f70c3a1fdc677d.tar.gz nextcloud-server-d3fedc14e2b70a3725ec3c3335f70c3a1fdc677d.zip |
fixed contacts strings (no technical stuff in the interface, don't scream at people, ...), ready for translation
Diffstat (limited to 'apps/contacts/ajax/deletecard.php')
-rw-r--r-- | apps/contacts/ajax/deletecard.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/contacts/ajax/deletecard.php b/apps/contacts/ajax/deletecard.php index b31c643f599..7dde7d30a52 100644 --- a/apps/contacts/ajax/deletecard.php +++ b/apps/contacts/ajax/deletecard.php @@ -29,20 +29,20 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } |