From 9aaf45c725c2fc98262cde64e55ce58c144b2829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Hermida?= Date: Thu, 11 Oct 2018 14:12:53 +0200 Subject: [PATCH] Update po files --- taiga/locale/en/LC_MESSAGES/django.po | 26 +++++++++++++++++++------- taiga/webhooks/validators.py | 1 + 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/taiga/locale/en/LC_MESSAGES/django.po b/taiga/locale/en/LC_MESSAGES/django.po index d2596713..95108ce9 100644 --- a/taiga/locale/en/LC_MESSAGES/django.po +++ b/taiga/locale/en/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: taiga-back\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-18 17:14+0200\n" +"POT-Creation-Date: 2018-10-11 14:11+0200\n" "PO-Revision-Date: 2018-02-15 17:25+0000\n" "Last-Translator: Miguel Gonzalez \n" "Language-Team: English (http://www.transifex.com/taiga-agile-llc/taiga-back/" @@ -196,8 +196,8 @@ msgstr "" #: taiga/hooks/api.py:69 taiga/projects/api.py:461 taiga/projects/api.py:494 #: taiga/projects/api.py:970 taiga/projects/epics/api.py:200 #: taiga/projects/epics/api.py:284 taiga/projects/issues/api.py:233 -#: taiga/projects/mixins/ordering.py:59 taiga/projects/tasks/api.py:258 -#: taiga/projects/tasks/api.py:283 taiga/projects/userstories/api.py:346 +#: taiga/projects/mixins/ordering.py:59 taiga/projects/tasks/api.py:259 +#: taiga/projects/tasks/api.py:284 taiga/projects/userstories/api.py:346 #: taiga/projects/userstories/api.py:398 taiga/webhooks/api.py:71 msgid "Blocked element" msgstr "Blocked element" @@ -518,6 +518,14 @@ msgstr "" " Comment: %(comment)s\n" " " +#: taiga/base/utils/urls.py:68 +msgid "Host access error" +msgstr "" + +#: taiga/base/utils/urls.py:74 +msgid "IP Address error" +msgstr "" + #: taiga/events/events.py:106 msgid "User story created" msgstr "" @@ -1123,7 +1131,7 @@ msgid "The payload is not a valid json" msgstr "The payload is not a valid json" #: taiga/hooks/api.py:63 taiga/projects/epics/api.py:154 -#: taiga/projects/issues/api.py:142 taiga/projects/tasks/api.py:210 +#: taiga/projects/issues/api.py:142 taiga/projects/tasks/api.py:211 #: taiga/projects/userstories/api.py:290 msgid "The project doesn't exist" msgstr "The project doesn't exist" @@ -3667,15 +3675,15 @@ msgstr "The color is not a valid HEX color." msgid "The tag doesn't exist." msgstr "The tag doesn't exist." -#: taiga/projects/tasks/api.py:107 taiga/projects/tasks/api.py:116 +#: taiga/projects/tasks/api.py:108 taiga/projects/tasks/api.py:117 msgid "You don't have permissions to set this sprint to this task." msgstr "You don't have permissions to set this sprint to this task." -#: taiga/projects/tasks/api.py:110 +#: taiga/projects/tasks/api.py:111 msgid "You don't have permissions to set this user story to this task." msgstr "You don't have permissions to set this user story to this task." -#: taiga/projects/tasks/api.py:113 +#: taiga/projects/tasks/api.py:114 msgid "You don't have permissions to set this status to this task." msgstr "You don't have permissions to set this status to this task." @@ -5021,3 +5029,7 @@ msgstr "response headers" #: taiga/webhooks/models.py:46 msgid "duration" msgstr "duration" + +#: taiga/webhooks/validators.py:42 +msgid "Not allowed IP Address" +msgstr "" diff --git a/taiga/webhooks/validators.py b/taiga/webhooks/validators.py index 3720e911..2bf3b706 100644 --- a/taiga/webhooks/validators.py +++ b/taiga/webhooks/validators.py @@ -41,3 +41,4 @@ class WebhookValidator(validators.ModelValidator): if ipa.is_private: raise ValidationError(_("Not allowed IP Address")) return attrs + return attrs