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/showaddcard.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/showaddcard.php')
-rw-r--r-- | apps/contacts/ajax/showaddcard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/ajax/showaddcard.php b/apps/contacts/ajax/showaddcard.php index dea8073a785..89c78fcdf54 100644 --- a/apps/contacts/ajax/showaddcard.php +++ b/apps/contacts/ajax/showaddcard.php @@ -27,7 +27,7 @@ $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(); } |