diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-07-29 16:33:23 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-07-29 16:54:19 +0300 |
commit | 97f2c393c122409f1c90234935a8ebbca962cb44 (patch) | |
tree | 3571288ff0c282ab93d7e1f1721436d9885183a0 /apps/files_sharing/templates | |
parent | 954b5d9019263b8d11cd61c858942f9eee78421d (diff) | |
download | nextcloud-server-97f2c393c122409f1c90234935a8ebbca962cb44.tar.gz nextcloud-server-97f2c393c122409f1c90234935a8ebbca962cb44.zip |
Allow apps to have own 404 content, closes #3225
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/part.404.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php new file mode 100644 index 00000000000..400dd6bbfd6 --- /dev/null +++ b/apps/files_sharing/templates/part.404.php @@ -0,0 +1,12 @@ +<ul> + <li class="error error-broken-link"> + <p><?php p($l->t('Sorry, this link doesn’t seem to work anymore.')) ?></p> + <p><?php p($l->t('Reasons might be:')); ?></p> + <ul> + <li><?php p($l->t('the item was removed')); ?></li> + <li><?php p($l->t('the link expired')); ?></li> + <li><?php p($l->t('sharing is disabled for this ownCloud')); ?></li> + </ul> + <p><?php p($l->t('For more info, please ask the person who sent this link.')); ?></p> + </li> +</ul>
\ No newline at end of file |