Browse Source

Changes in settings.

Ralfp 12 years ago
parent
commit
b5fde2f393
3 changed files with 6 additions and 5 deletions
  1. 4 3
      misago/authn/fixtures.py
  2. 1 1
      misago/bruteforce/fixtures.py
  3. 1 1
      misago/register/fixtures.py

+ 4 - 3
misago/authn/fixtures.py

@@ -12,7 +12,7 @@ settings_fixtures = (
                 'value':        True,
                 'type':         "boolean",
                 'input':        "yesno",
-                'separator':    _("Sign-In Settings"),
+                'separator':    _("Sessions Settings"),
                 'name':         _("Check IP on session authorization"),
                 'description':  _("Makes sessions more secure, but can cause problems with proxies and VPN's."),
                 'position':     0,
@@ -21,8 +21,9 @@ settings_fixtures = (
                 'value':        True,
                 'type':         "boolean",
                 'input':        "yesno",
-                'name':         _('Enable "Remember Me" functionality'),
-                'description':  _("Turning this option on allows users to sign in on to your board using cookie-based tokens. This may result in account compromisation when user fails to sign out on shared computer."),
+                'separator':    _('"Remember Me" Feature'),
+                'name':         _('Enable "Remember Me" feature'),
+                'description':  _("Turning this option on allows users to sign in on to your board using cookie-based tokens. This may result in account compromisation when user fails to sign out on shared computer or his cookie is stolen."),
                 'position':     1,
             }),
             ('remember_me_lifetime', {

+ 1 - 1
misago/bruteforce/fixtures.py

@@ -6,7 +6,7 @@ settings_fixtures = (
     # Register and Sign-In Settings
     ('brute-force', {
         'name': _("Brute-force Countermeasures"),
-        'description': _("Those settings allow you to increase security of your members accounts."),
+        'description': _("Those settings allow you to protect your forum from brute-force attacks."),
         'settings': (
             ('attempts_limit', {
                 'value':        3,

+ 1 - 1
misago/register/fixtures.py

@@ -5,7 +5,7 @@ from misago.utils import get_msgid
 settings_fixtures = (
     # Register and Sign-In Settings
     ('accounts', {
-        'name': _("Member Accounts Settings"),
+        'name': _("Users Accounts Settings"),
         'description': _("Those settings allow you to increase security of your members accounts."),
         'settings': (
             ('account_activation', {