From 6559a71c10c639badc9df2c24b06c7fe413f3805 Mon Sep 17 00:00:00 2001 From: Leandro Regueiro Date: Tue, 30 May 2017 15:25:42 +0200 Subject: [PATCH] L10n: some cleanups --- pootle/checks.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pootle/checks.py b/pootle/checks.py index 9a7938e1e7f..5f37b2dfbf2 100644 --- a/pootle/checks.py +++ b/pootle/checks.py @@ -390,16 +390,17 @@ def check_settings_markup(app_configs=None, **kwargs): if markup_filter is None: errors.append(checks.Warning( _("POOTLE_MARKUP_FILTER set to 'None' is deprecated."), - hint=_("Set your markup to 'html' explicitly."), + hint=_("Set POOTLE_MARKUP_FILTER explicitly to use 'html' " + "markup."), id="pootle.W025", )) if markup_filter in ('html', 'textile', 'restructuredtext'): errors.append(checks.Warning( _("POOTLE_MARKUP_FILTER is using '%s' markup, which is " - "deprecated and will be removed in future.", + "deprecated and will be removed in the future.", markup_filter), - hint=_("Convert your staticpages to Markdown and set your " - "markup to 'markdown'."), + hint=_("Convert your static pages to Markdown and set " + "POOTLE_MARKUP_FILTER to use 'markdown' markup."), id="pootle.W026", )) return errors