aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-10-27 03:58:09 -0700
committerLukas Reschke <lukas@statuscode.ch>2013-10-27 03:58:09 -0700
commit300cb22d24a12b6114716176ceac752056bec017 (patch)
treee84876b61f4f8520c1295346696fe2a5d718c966 /apps
parentaa069833459e2d2f4c512efc7e0282a13f43fc8d (diff)
parenteb2d66d1a0aea194318fe2aa7020157a9ac0f193 (diff)
downloadnextcloud-server-300cb22d24a12b6114716176ceac752056bec017.tar.gz
nextcloud-server-300cb22d24a12b6114716176ceac752056bec017.zip
Merge pull request #5566 from owncloud/fix-double-not
Fix double not in newfile/newfolder language.
Diffstat (limited to 'apps')
-rw-r--r--apps/files/ajax/newfile.php2
-rw-r--r--apps/files/ajax/newfolder.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php
index d1183089b4f..eed0047fc81 100644
--- a/apps/files/ajax/newfile.php
+++ b/apps/files/ajax/newfile.php
@@ -53,7 +53,7 @@ $result = array(
);
if(trim($filename) === '') {
- $result['data'] = array('message' => $l10n->t('File name cannot not be empty.'));
+ $result['data'] = array('message' => $l10n->t('File name cannot be empty.'));
OCP\JSON::error($result);
exit();
}
diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php
index 1fd5359896e..2cbc8cfeba5 100644
--- a/apps/files/ajax/newfolder.php
+++ b/apps/files/ajax/newfolder.php
@@ -18,7 +18,7 @@ $result = array(
);
if(trim($foldername) === '') {
- $result['data'] = array('message' => $l10n->t('Folder name cannot not be empty.'));
+ $result['data'] = array('message' => $l10n->t('Folder name cannot be empty.'));
OCP\JSON::error($result);
exit();
}