1<?php
2
3/**
4 * @license    GPL 3 (http://www.gnu.org/licenses/gpl.html)
5 *
6 * @author cziehr <info@einsatzleiterwiki.de>
7 *@author    Myron Turner <turnermm02@shaw.ca>
8 */
9$lang['seconds']     = 'Time till redirection (in seconds)';
10$lang['minSeconds']  = 'Minimal time which is allowed till redirection (in seconds)';
11$lang['auto_login'] = 'On login, automatically go to a predefined page, as set in the <code>auto_options</code> and/or <code>group options</code> settings.';
12$lang['auto_options'] = 'Target for the auto_login page. In each case <b>user</b> refers to the user\'s ' .
13         ' login name.  If the login name is "foo", then ":user_page" is ":foo"; '  .
14		 ' "user_ns:user_page" is ":foo:foo"; ":user_ns:start_page" is ":foo:start". The <b>common_ns</b> ' .
15		 'is defined in the <code>common_ns</code> option.';
16$lang['common_ns'] = 'An arbitrarily defined namespace of any depth where all auto login pages will reside. This can include the wildcard <code>user_ns<code>';
17$lang['group'] = 'Comma separated list of  group namespaces to which users can be redirected. Different users can be in different groups.  If a user belongs to two groups on this list,  the user will be redirected to the first.';
18$lang['group_options'] = "The user can be redirected either to the group start page or to the user\'s own page in the group namespace.";
19/*
20$lang['group_only'] ="Redirect only to group namespaces, i.e. not to user namespaces and pages";
21$lang['user_only'] = "Redirect to user namespaces and pages only, i.e. not to group namespaces.";
22*/
23$lang['only_option'] = '<b><code>group</code></b> redirects only to group namespaces and their pages; ' .
24          '<b><code>user</code></b> to user namespaces and pages; ' .
25		  ' and <b><code>default</code></b> to either, with group having precedence.';