diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 16:04:18 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-21 23:47:56 +0100 |
commit | 19c5213b53fbddc2a2b61e0ad35cda6ce5002bb5 (patch) | |
tree | 8f7a54fccdc8a9b5780a541a5a6fbe14142e7a1d /apps/files/ajax | |
parent | 83f161d3f964a48f6dbe92e69233575b1984c547 (diff) | |
download | nextcloud-server-19c5213b53fbddc2a2b61e0ad35cda6ce5002bb5.tar.gz nextcloud-server-19c5213b53fbddc2a2b61e0ad35cda6ce5002bb5.zip |
Join split translated strings
Diffstat (limited to 'apps/files/ajax')
-rw-r--r-- | apps/files/ajax/upload.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 9031c729eff..5b697777e47 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -26,8 +26,7 @@ foreach ($_FILES['files']['error'] as $error) { UPLOAD_ERR_OK => $l->t('There is no error, the file uploaded with success'), UPLOAD_ERR_INI_SIZE => $l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ') . ini_get('upload_max_filesize'), - UPLOAD_ERR_FORM_SIZE => $l->t('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified' - . ' in the HTML form'), + UPLOAD_ERR_FORM_SIZE => $l->t('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'), UPLOAD_ERR_PARTIAL => $l->t('The uploaded file was only partially uploaded'), UPLOAD_ERR_NO_FILE => $l->t('No file was uploaded'), UPLOAD_ERR_NO_TMP_DIR => $l->t('Missing a temporary folder'), |