diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-09 11:27:24 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-09 11:39:46 +0200 |
commit | dd7e519cda569b5f0f175799975a836425446987 (patch) | |
tree | 19c2d34a5ce43b38f460f5bd3f690b6de40f979a /core/templates/installation.php | |
parent | f3efd7a51e377b5e789bf057228f95da28caa9c8 (diff) | |
download | nextcloud-server-dd7e519cda569b5f0f175799975a836425446987.tar.gz nextcloud-server-dd7e519cda569b5f0f175799975a836425446987.zip |
add link to installation documentation to setup page
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 96e6119cad3..911bc05069f 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -28,7 +28,7 @@ script('core', [ <?php endif; ?> <?php if(!$_['htaccessWorking']): ?> <fieldset class="warning"> - <legend><strong><?php p($l->t('Security Warning'));?></strong></legend> + <legend><strong><?php p($l->t('Security warning'));?></strong></legend> <p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br> <?php print_unescaped($l->t( 'For information how to properly configure your server, please see the <a href="%s" target="_blank">documentation</a>.', @@ -150,7 +150,7 @@ script('core', [ <?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?> <fieldset id="sqliteInformation" class="warning"> - <legend><?php p($l->t('Performance Warning'));?></legend> + <legend><?php p($l->t('Performance warning'));?></legend> <p><?php p($l->t('SQLite will be used as database.'));?></p> <p><?php p($l->t('For larger installations we recommend to choose a different database backend.'));?></p> <p><?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?></p> @@ -158,4 +158,10 @@ script('core', [ <?php endif ?> <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>"></div> + + <p class="info"> + <span class="icon-info-white svg"></span> + <?php p($l->t('Need help?'));?> + <a target="_blank" href="<?php p(link_to_docs('admin-install')); ?>"><?php p($l->t('See the documentation'));?> ↗</a> + </p> </form> |