diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-10-02 23:12:50 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-10-02 23:12:50 +0000 |
commit | 3c8309a7e621ede168cf7f6dfd8c8d55144525ea (patch) | |
tree | 8b13443d84b3eae9ddead399bea404a981b2bc60 /language/en_UK.iso-8859-1 | |
parent | da836ea95fce9a8b5711366253832d298e3c4a6e (diff) |
- deletion of session_time and session_id_size as config parameter
- new feature : "remember me" creates a long time cookie
- possibility to set the default authentication method to URI or cookie
- really technical parameters (session identifier size, session duration)
are set in the config file and not in database + configuration.php
git-svn-id: http://piwigo.org/svn/trunk@541 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'language/en_UK.iso-8859-1')
-rw-r--r-- | language/en_UK.iso-8859-1/admin.lang.php | 14 | ||||
-rw-r--r-- | language/en_UK.iso-8859-1/common.lang.php | 1 |
2 files changed, 7 insertions, 8 deletions
diff --git a/language/en_UK.iso-8859-1/admin.lang.php b/language/en_UK.iso-8859-1/admin.lang.php index d127cf299..51b408d63 100644 --- a/language/en_UK.iso-8859-1/admin.lang.php +++ b/language/en_UK.iso-8859-1/admin.lang.php @@ -174,14 +174,12 @@ $lang['conf_upload_maxheight_thumbnail_error'] = 'Maximum height authorized for // Configuration -> session $lang['conf_session_title'] = 'Sessions'; -$lang['conf_cookies'] = 'Authorize cookies'; -$lang['conf_cookies_info'] = 'Users won\'t have to log on each visit any more. Less secure.'; -$lang['conf_session_size'] = 'Identifier size'; -$lang['conf_session_size_info'] = '- the longer your identifier is, the more secure your site is<br />- enter a number between 4 and 50'; -$lang['conf_session_size_error'] = 'the session identifier size must be an integer value between 4 and 50'; -$lang['conf_session_time'] = 'validity period'; -$lang['conf_session_time_info'] = '- the shorter the validity period is, the more secure your site is<br />- enter a number between 5 and 60, in minutes'; -$lang['conf_session_time_error'] = 'the session time must be an integer value between 5 and 60'; +$lang['conf_auth_method'] = 'Authentication method'; +$lang['conf_auth_method_info'] = 'The default authentication method can be URI (session identifier in the gallery links) or cookie (no session identifier in links but needs cookies to be authorized by web browser)'; +$lang['URI'] = 'URI'; +$lang['cookie'] = 'cookie'; +$lang['conf_authorize_remembering'] = 'Authorize remembering'; +$lang['conf_authorize_remembering_info'] = 'Permits user to log for a long time. It creates a cookie on client side, with duration set in include/config.inc.php (1 year per default)'; // Configuration -> metadata $lang['conf_metadata_title'] = 'Metadata'; diff --git a/language/en_UK.iso-8859-1/common.lang.php b/language/en_UK.iso-8859-1/common.lang.php index 72ef8ca75..c0427ea9e 100644 --- a/language/en_UK.iso-8859-1/common.lang.php +++ b/language/en_UK.iso-8859-1/common.lang.php @@ -292,4 +292,5 @@ $lang['standard_deviation'] = 'STD'; $lang['random_cat'] = 'random pictures'; $lang['random_cat_hint'] = 'Displays a set of random pictures'; $lang['picture_high'] = 'Click on the picture to see it in high definition'; +$lang['remember_me'] = 'remember me'; ?>
\ No newline at end of file |