Welcome to mirror list, hosted at ThFree Co, Russian Federation.

part.linkerror.php « templates - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44161437f942654e419d6cde72f5dc63cab7fdc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
 * @var $_ array
 */
/**
 * @var $l \OCP\IL10N
 */
style(
	$_['appName'],
	[
		'error'
	]
);
?>
<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 has expired')); ?></li>
			<li><?php p($l->t('sharing is disabled')); ?></li>
		</ul>
		<?php if (isset($_['message'])): ?>
		</br>
		<p><?php p($l->t('Here is the error message returned by the server: ')); ?>
			<strong><?php p($_['message'] . ' (' . $_['code'] . ')'); ?></strong></p>
		<?php endif; ?>
		</br>
		<p><?php p(
				$l->t('For more information, please ask the person who has sent you this link.')
			); ?></p>
	</li>
</ul>