diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lang/en/install.html | 24 | ||||
-rw-r--r-- | inc/lang/en/lang.php | 22 |
2 files changed, 46 insertions, 0 deletions
diff --git a/inc/lang/en/install.html b/inc/lang/en/install.html new file mode 100644 index 000000000..ec6a840b1 --- /dev/null +++ b/inc/lang/en/install.html @@ -0,0 +1,24 @@ +<p>This page assists in the first time installation and configuration of +<a href="http://wiki.splitbrain.org">Dokuwiki</a>. More info on this +installer is available on it's own +<a href="http://wiki.splitbrain.org/wiki:installer">documentation page</a>.</p> + +<p>DokuWiki uses ordinary files for the storage of wiki pages and other +information associated with those pages (e.g. images, search indexes, old +revisions, etc). In order to operate successfully DokuWiki +<strong>must</strong> have write access to the directories that hold those +files. This installer is not capable of setting up directory permissions. That +normally needs to be done directly on a command shell or if you are using hosting, +through FTP or your hosting control panel (e.g. cPanel).</p> + +<p>This installer will setup your DokuWiki configuration for +<acronym title="access control list">ACL</acronym>, which in turn allows administrator +login and access to DokuWiki's admin menu for installing plugins, managing +users, managing access to wiki pages and alteration of configuration settings. +It isn't required for DokuWiki to operate, however it will make Dokuwiki easier +to administer.</p> + +<p>Experienced users or users with special setup requirements should use these links +for details concerning +<a href="http://wiki.splitbrain.org/wiki:install">installation instructions</a> +and <a href="http://wiki.splitbrain.org/wiki:config">configuration settings</a>.</p> diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index 894a4176b..85af612b3 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -195,4 +195,26 @@ $lang['unsubscribe_error'] = 'Error removing %s from subscription list for %s'; $lang['authmodfailed'] = 'Bad user authentication configuration. Please inform your Wiki Admin.'; $lang['authtempfail'] = 'User authentication is temporarily unavailable. If this situation persists, please inform your Wiki Admin.'; +/* installer strings */ +$lang['i_chooselang'] = 'Choose your language'; +$lang['i_installer'] = 'DokuWiki Installer'; +$lang['i_wikiname'] = 'Wiki Name'; +$lang['i_enableacl'] = 'Enable ACL (recommended)'; +$lang['i_superuser'] = 'Superuser'; +$lang['i_problems'] = 'The installer found some problems, indicated below. You can not continue until you fixed them.'; +$lang['i_modified'] = 'For security reasons this script will only work with a new and unmodified Dokuwiki installation. + You should either re-extract the files from the downloaded package or consult the complete + <a href="http://wiki.splitbrain.org/wiki:install">Dokuwiki installation instructions</a>'; +$lang['i_funcna'] = 'PHP function <code>%s</code> is not available. Maybe your provider disabled it for some reason?'; +$lang['i_permfail'] = '<code>%s</code> is not writable by DokuWiki. You need to fix the permission settings of this directory!'; +$lang['i_confexists'] = '<code>%s</code> already exists'; +$lang['i_writeerr'] = 'Unable to create <code>%s</code>. You will need to check directory/file permissions and create the file manually.'; +$lang['i_badhash'] = 'unrecognised or modified dokuwiki.php (hash=<code>%s</code>)'; +$lang['i_badval'] = '<code>%s</code> - illegal or empty value'; +$lang['i_success'] = 'The configuration was finished successfully. You may delete the install.php file now. Continue to + <a href="doku.php">your new DokuWiki</a>.'; +$lang['i_failure'] = 'Some errors occured while writing the configuration files. You may need to fix them manually before + you can use <a href="doku.php">your new DokuWiki</a>.'; + + //Setup VIM: ex: et ts=2 enc=utf-8 : |