Update po files

remotes/origin/4.0rc
Álex Hermida 2018-10-11 14:12:53 +02:00 committed by Alex Hermida
parent e37eb65431
commit 9aaf45c725
2 changed files with 20 additions and 7 deletions

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: taiga-back\n" "Project-Id-Version: taiga-back\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2018-02-15 17:25+0000\n"
"Last-Translator: Miguel Gonzalez <migonzalvar@gmail.com>\n" "Last-Translator: Miguel Gonzalez <migonzalvar@gmail.com>\n"
"Language-Team: English (http://www.transifex.com/taiga-agile-llc/taiga-back/" "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/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/api.py:970 taiga/projects/epics/api.py:200
#: taiga/projects/epics/api.py:284 taiga/projects/issues/api.py:233 #: 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/mixins/ordering.py:59 taiga/projects/tasks/api.py:259
#: taiga/projects/tasks/api.py:283 taiga/projects/userstories/api.py:346 #: taiga/projects/tasks/api.py:284 taiga/projects/userstories/api.py:346
#: taiga/projects/userstories/api.py:398 taiga/webhooks/api.py:71 #: taiga/projects/userstories/api.py:398 taiga/webhooks/api.py:71
msgid "Blocked element" msgid "Blocked element"
msgstr "Blocked element" msgstr "Blocked element"
@ -518,6 +518,14 @@ msgstr ""
" Comment: %(comment)s\n" " 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 #: taiga/events/events.py:106
msgid "User story created" msgid "User story created"
msgstr "" msgstr ""
@ -1123,7 +1131,7 @@ msgid "The payload is not a valid json"
msgstr "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/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 #: taiga/projects/userstories/api.py:290
msgid "The project doesn't exist" msgid "The project doesn't exist"
msgstr "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." msgid "The tag doesn't exist."
msgstr "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." 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." 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." 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." 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." 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." 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 #: taiga/webhooks/models.py:46
msgid "duration" msgid "duration"
msgstr "duration" msgstr "duration"
#: taiga/webhooks/validators.py:42
msgid "Not allowed IP Address"
msgstr ""

View File

@ -41,3 +41,4 @@ class WebhookValidator(validators.ModelValidator):
if ipa.is_private: if ipa.is_private:
raise ValidationError(_("Not allowed IP Address")) raise ValidationError(_("Not allowed IP Address"))
return attrs return attrs
return attrs