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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Installation/templates/welcome.tpl')
-rw-r--r--plugins/Installation/templates/welcome.tpl25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/Installation/templates/welcome.tpl b/plugins/Installation/templates/welcome.tpl
index c2985c3c36..2de55967e2 100644
--- a/plugins/Installation/templates/welcome.tpl
+++ b/plugins/Installation/templates/welcome.tpl
@@ -1,4 +1,29 @@
<h1>{'Installation_Welcome'|translate}</h1>
+{if $newInstall}
{'Installation_WelcomeHelp'|translate:$totalNumberOfSteps}
+{else}
+<p>{'Installation_ConfigurationHelp'|translate}</p>
+<br />
+<div class="error">
+{$errorMessage}
+</div>
+{/if}
+{literal}
+<script type="text/javascript">
+<!--
+$(function() {
+if (document.location.protocol === 'https:') {
+ $('p.nextStep a').attr('href', $('p.nextStep a').attr('href') + '&clientProtocol=https');
+}
+});
+//-->
+</script>
+{/literal}
+
+{if !$showNextStep}
+<p class="nextStep">
+ <a href="{url}">{'General_Refresh'|translate} &raquo;</a>
+</p>
+{/if}