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

part.internalservererror.php « templates - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb370dcf3c4219dbee0bfa24a510772d49306f6a (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 OC_L10N
 */
style(
	$_['appName'],
	[
		'error'
	]
);
?>
<ul>
	<li class="error error-broken-link">
		<p><?php p($l->t("Sorry, but the server could not fulfill your request.")) ?></p>

		<p><?php p($l->t('Possible reasons for the problem:')); ?></p>
		<ul>
			<li><?php p($l->t('a conflicting app was installed')); ?></li>
			<li><?php p($l->t('a required component is missing or was disconnected')); ?></li>
			<li><?php p($l->t('the filesystem is not readable')); ?></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 contact your friendly ownCloud administrator.')
			); ?></p>
	</li>
</ul>