From fa678b09bc69604ba09a608471ef0e95a402a77f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 11 Jun 2019 01:12:23 -0400 Subject: [PATCH] Improve settings descriptions Signed-off-by: Roberto Rosario --- mayan/apps/common/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/common/settings.py b/mayan/apps/common/settings.py index bf5a411817..e838c07a65 100644 --- a/mayan/apps/common/settings.py +++ b/mayan/apps/common/settings.py @@ -38,7 +38,7 @@ setting_paginate_by = namespace.add_setting( global_name='COMMON_PAGINATE_BY', default=40, help_text=_( - 'An integer specifying how many objects should be displayed per page.' + 'The number objects that will be displayed per page.' ) ) setting_production_error_logging = namespace.add_setting( @@ -347,7 +347,7 @@ setting_django_static_url = namespace.add_setting( 'URL to use when referring to static files located in STATIC_ROOT. ' 'Example: "/static/" or "http://static.example.com/" ' 'If not None, this will be used as the base path for asset ' - 'definitions (the Media class) and the staticfiles app.' + 'definitions (the Media class) and the staticfiles app. ' 'It must end in a slash if set to a non-empty value.' ), )