diff --git a/webhook/README.rst b/webhook/README.rst new file mode 100644 index 00000000000..9ee35a0cbca --- /dev/null +++ b/webhook/README.rst @@ -0,0 +1,143 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======= +Webhook +======= + +Module to receive `webhook `_ events. +This module invoke methods to process webhook events. + + +Configuration +============= + +You will need create a new module to add your logic to process the events with methods called: +*def run_CONSUMER_EVENT\** +Example with gihub consumer and push event. + +.. code-block:: python + + @api.one + def run_github_push_task(self): + # You will have all request data in + # variable: self.env.request + pass + + +Where CONSUMER is the name of you webhook consumer. e.g. github (Extract from field *name* of *webhook* model) +Where EVENT is the name of the event from webhook *request* data. +Where *\** is your particular method to process this event. + +To configure a new webhook you need add all ip or subnet address (with *ip/integer*) owned by your webhook consumer in webhook.address model as data. + +Example with github: + +.. code-block:: xml + + + + 192.30.252.0/22 + + + + +You need to add a python code to extract event name from webhook request info into `python_code_get_event` field of webhook model. +You can get all full data of request webhook from variable `request` +Example with github: + +.. code-block:: xml + + + + github + request.httprequest.headers.get('X-Github-Event') + + + +Full example of create a new webhook configuration data. + +.. code-block:: xml + + + + + + + + github + request.httprequest.headers.get('X-Github-Event') + + + + 192.30.252.0/22 + + + + + + + +.. figure:: path/to/local/image.png + :alt: alternative description + :width: 600 px + +Usage +===== + +To use this module, you need to: + +#. Go to your customer webhook configuration from 3rd-party applications + and use the odoo webhook url HOST/webhook/NAME_WEBHOOK + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/149/11.0 + +.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt +.. branch is "8.0" for example + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Moisés López + +Funders +------- + +The development of this module has been financially supported by: + +* Vauxoo + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/webhook/__init__.py b/webhook/__init__.py new file mode 100644 index 00000000000..f6859b2b58a --- /dev/null +++ b/webhook/__init__.py @@ -0,0 +1,6 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models +from . import controllers +from . import tests diff --git a/webhook/__manifest__.py b/webhook/__manifest__.py new file mode 100644 index 00000000000..b1dac1f0726 --- /dev/null +++ b/webhook/__manifest__.py @@ -0,0 +1,28 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + 'name': 'Webhook', + 'version': '11.0.1.0.0', + 'author': 'Vauxoo, Odoo Community Association (OCA)', + 'category': 'Server Tools', + 'website': 'https://www.vauxoo.com', + 'license': 'AGPL-3', + 'depends': [ + 'web', + ], + 'external_dependencies': { + 'python': [ + 'ipaddress', + 'requests', + ], + }, + 'data': [ + 'security/ir.model.access.csv', + 'views/webhook_views.xml', + ], + 'demo': [ + 'demo/webhook_demo.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/webhook/controllers/__init__.py b/webhook/controllers/__init__.py new file mode 100644 index 00000000000..332cfbc5a8d --- /dev/null +++ b/webhook/controllers/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import main diff --git a/webhook/controllers/main.py b/webhook/controllers/main.py new file mode 100644 index 00000000000..cdef7387f61 --- /dev/null +++ b/webhook/controllers/main.py @@ -0,0 +1,39 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import pprint + +from odoo import http +from odoo.http import request +from odoo import exceptions +from odoo.tools.translate import _ + + +class WebhookController(http.Controller): + + @http.route(['/webhook/'], type='json', + auth='none', method=['POST']) + def webhook(self, webhook_name, **post): + ''' + :params string webhook_name: Name of webhook to use + Webhook odoo controller to receive json request and send to + driver method. + You will need create your webhook with http://0.0.0.0:0000/webhook + NOTE: Important use --db-filter params in odoo start. + ''' + # Deprecated by webhook_name dynamic name + # webhook = webhook_registry.search_with_request( + # cr, SUPERUSER_ID, request, context=context) + webhook = request.env['webhook'].sudo().search( + [('name', '=', webhook_name)], limit=1) + # TODO: Add security by secret string or/and ip consumer + if not webhook: + remote_addr = getattr(request.httprequest, 'remote_addr', None) + raise exceptions.ValidationError(_( + 'webhook consumer [%s] from remote address [%s] ' + 'not found jsonrequest [%s]' % ( + webhook_name, + remote_addr, + pprint.pformat(request.jsonrequest)[:450] + ))) + webhook.run_webhook(request) diff --git a/webhook/demo/webhook_demo.xml b/webhook/demo/webhook_demo.xml new file mode 100644 index 00000000000..c8a992973ff --- /dev/null +++ b/webhook/demo/webhook_demo.xml @@ -0,0 +1,25 @@ + + + + + wehook_test + request.httprequest.headers.get("X-Webhook-Test-Event") + request.httprequest.headers.get("X-Webhook-Test-Address") + + + + 127.0.0.1 + + + + + + github + request.httprequest.headers.get('X-Github-Event') + + + 192.30.252.0/22 + + + + diff --git a/webhook/i18n/am.po b/webhook/i18n/am.po new file mode 100644 index 00000000000..3c7222d5c64 --- /dev/null +++ b/webhook/i18n/am.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ar.po b/webhook/i18n/ar.po new file mode 100644 index 00000000000..2c12d481eac --- /dev/null +++ b/webhook/i18n/ar.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "المعرف" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/bg.po b/webhook/i18n/bg.po new file mode 100644 index 00000000000..556ed107048 --- /dev/null +++ b/webhook/i18n/bg.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Активен" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/bs.po b/webhook/i18n/bs.po new file mode 100644 index 00000000000..3da628d4990 --- /dev/null +++ b/webhook/i18n/bs.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ca.po b/webhook/i18n/ca.po new file mode 100644 index 00000000000..23b1d76d16b --- /dev/null +++ b/webhook/i18n/ca.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Actiu" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/cs.po b/webhook/i18n/cs.po new file mode 100644 index 00000000000..4d6987a9e30 --- /dev/null +++ b/webhook/i18n/cs.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/da.po b/webhook/i18n/da.po new file mode 100644 index 00000000000..e3b7db301b5 --- /dev/null +++ b/webhook/i18n/da.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktiv" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "Id" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/de.po b/webhook/i18n/de.po new file mode 100644 index 00000000000..8d53d22e834 --- /dev/null +++ b/webhook/i18n/de.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# Niki Waibel , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktiv" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/el_GR.po b/webhook/i18n/el_GR.po new file mode 100644 index 00000000000..83705d2c544 --- /dev/null +++ b/webhook/i18n/el_GR.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "Κωδικός" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/en_GB.po b/webhook/i18n/en_GB.po new file mode 100644 index 00000000000..3120986940c --- /dev/null +++ b/webhook/i18n/en_GB.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Created on" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es.po b/webhook/i18n/es.po new file mode 100644 index 00000000000..209273d5262 --- /dev/null +++ b/webhook/i18n/es.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# Pedro M. Baeza , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Activo" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado el" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_AR.po b/webhook/i18n/es_AR.po new file mode 100644 index 00000000000..b88153070f3 --- /dev/null +++ b/webhook/i18n/es_AR.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_CL.po b/webhook/i18n/es_CL.po new file mode 100644 index 00000000000..9d76dadfacf --- /dev/null +++ b/webhook/i18n/es_CL.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_CO.po b/webhook/i18n/es_CO.po new file mode 100644 index 00000000000..5e995a8e023 --- /dev/null +++ b/webhook/i18n/es_CO.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_CR.po b/webhook/i18n/es_CR.po new file mode 100644 index 00000000000..de26466491e --- /dev/null +++ b/webhook/i18n/es_CR.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_DO.po b/webhook/i18n/es_DO.po new file mode 100644 index 00000000000..b80b1ffe849 --- /dev/null +++ b/webhook/i18n/es_DO.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_EC.po b/webhook/i18n/es_EC.po new file mode 100644 index 00000000000..7a3760b71e7 --- /dev/null +++ b/webhook/i18n/es_EC.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_ES.po b/webhook/i18n/es_ES.po new file mode 100644 index 00000000000..3b493a75c7f --- /dev/null +++ b/webhook/i18n/es_ES.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_MX.po b/webhook/i18n/es_MX.po new file mode 100644 index 00000000000..873f8c0284e --- /dev/null +++ b/webhook/i18n/es_MX.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_PE.po b/webhook/i18n/es_PE.po new file mode 100644 index 00000000000..2bd4ae8af5e --- /dev/null +++ b/webhook/i18n/es_PE.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_PY.po b/webhook/i18n/es_PY.po new file mode 100644 index 00000000000..6f31b230743 --- /dev/null +++ b/webhook/i18n/es_PY.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/es_VE.po b/webhook/i18n/es_VE.po new file mode 100644 index 00000000000..16d1409e2ca --- /dev/null +++ b/webhook/i18n/es_VE.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/et.po b/webhook/i18n/et.po new file mode 100644 index 00000000000..f9c02d23ff2 --- /dev/null +++ b/webhook/i18n/et.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/eu.po b/webhook/i18n/eu.po new file mode 100644 index 00000000000..e307a51e455 --- /dev/null +++ b/webhook/i18n/eu.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Created on" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/fa.po b/webhook/i18n/fa.po new file mode 100644 index 00000000000..923e078fec1 --- /dev/null +++ b/webhook/i18n/fa.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "شناسه" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/fi.po b/webhook/i18n/fi.po new file mode 100644 index 00000000000..31fb53e1b4b --- /dev/null +++ b/webhook/i18n/fi.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktiivinen" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/fr.po b/webhook/i18n/fr.po new file mode 100644 index 00000000000..b1babc3c715 --- /dev/null +++ b/webhook/i18n/fr.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Active" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/fr_CA.po b/webhook/i18n/fr_CA.po new file mode 100644 index 00000000000..265e0d5fb86 --- /dev/null +++ b/webhook/i18n/fr_CA.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "Identifiant" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/fr_CH.po b/webhook/i18n/fr_CH.po new file mode 100644 index 00000000000..fbab217fe54 --- /dev/null +++ b/webhook/i18n/fr_CH.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Actif" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/gl.po b/webhook/i18n/gl.po new file mode 100644 index 00000000000..f8bad866e5a --- /dev/null +++ b/webhook/i18n/gl.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/gl_ES.po b/webhook/i18n/gl_ES.po new file mode 100644 index 00000000000..5e4e0f082de --- /dev/null +++ b/webhook/i18n/gl_ES.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/he.po b/webhook/i18n/he.po new file mode 100644 index 00000000000..ffcb9b057f7 --- /dev/null +++ b/webhook/i18n/he.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "מזהה" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/hr.po b/webhook/i18n/hr.po new file mode 100644 index 00000000000..35ca621c185 --- /dev/null +++ b/webhook/i18n/hr.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktivno" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/hr_HR.po b/webhook/i18n/hr_HR.po new file mode 100644 index 00000000000..9ab0a34dc66 --- /dev/null +++ b/webhook/i18n/hr_HR.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktivan" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/hu.po b/webhook/i18n/hu.po new file mode 100644 index 00000000000..809a6b6293c --- /dev/null +++ b/webhook/i18n/hu.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/id.po b/webhook/i18n/id.po new file mode 100644 index 00000000000..74ce1172690 --- /dev/null +++ b/webhook/i18n/id.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/it.po b/webhook/i18n/it.po new file mode 100644 index 00000000000..bfbb7ff1d96 --- /dev/null +++ b/webhook/i18n/it.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Attivo" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Created on" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ja.po b/webhook/i18n/ja.po new file mode 100644 index 00000000000..c1c45ebb0eb --- /dev/null +++ b/webhook/i18n/ja.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "作成日" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ko.po b/webhook/i18n/ko.po new file mode 100644 index 00000000000..4639cf08ad3 --- /dev/null +++ b/webhook/i18n/ko.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "작성일" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/lt.po b/webhook/i18n/lt.po new file mode 100644 index 00000000000..28b2c69058c --- /dev/null +++ b/webhook/i18n/lt.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/lt_LT.po b/webhook/i18n/lt_LT.po new file mode 100644 index 00000000000..33355171f53 --- /dev/null +++ b/webhook/i18n/lt_LT.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/lv.po b/webhook/i18n/lv.po new file mode 100644 index 00000000000..f3414bd18eb --- /dev/null +++ b/webhook/i18n/lv.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/mk.po b/webhook/i18n/mk.po new file mode 100644 index 00000000000..536dc3f8325 --- /dev/null +++ b/webhook/i18n/mk.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/mn.po b/webhook/i18n/mn.po new file mode 100644 index 00000000000..c5f7b34d7b0 --- /dev/null +++ b/webhook/i18n/mn.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/nb.po b/webhook/i18n/nb.po new file mode 100644 index 00000000000..ca7feff7eb9 --- /dev/null +++ b/webhook/i18n/nb.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/nb_NO.po b/webhook/i18n/nb_NO.po new file mode 100644 index 00000000000..56626686a6e --- /dev/null +++ b/webhook/i18n/nb_NO.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/nl.po b/webhook/i18n/nl.po new file mode 100644 index 00000000000..5770fe1a7e6 --- /dev/null +++ b/webhook/i18n/nl.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Actief" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/nl_BE.po b/webhook/i18n/nl_BE.po new file mode 100644 index 00000000000..3a9f6ae72f4 --- /dev/null +++ b/webhook/i18n/nl_BE.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/nl_NL.po b/webhook/i18n/nl_NL.po new file mode 100644 index 00000000000..91175afd302 --- /dev/null +++ b/webhook/i18n/nl_NL.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Actief" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/pl.po b/webhook/i18n/pl.po new file mode 100644 index 00000000000..34e577c1ac6 --- /dev/null +++ b/webhook/i18n/pl.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/pt.po b/webhook/i18n/pt.po new file mode 100644 index 00000000000..5131a4664c8 --- /dev/null +++ b/webhook/i18n/pt.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# Pedro Castro Silva , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Ativo" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/pt_BR.po b/webhook/i18n/pt_BR.po new file mode 100644 index 00000000000..62a25521459 --- /dev/null +++ b/webhook/i18n/pt_BR.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# falexandresilva , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Ativo" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "Identificação" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/pt_PT.po b/webhook/i18n/pt_PT.po new file mode 100644 index 00000000000..61e9c9d22cc --- /dev/null +++ b/webhook/i18n/pt_PT.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Ativo" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ro.po b/webhook/i18n/ro.po new file mode 100644 index 00000000000..6132b50ab0d --- /dev/null +++ b/webhook/i18n/ro.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Activ" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/ru.po b/webhook/i18n/ru.po new file mode 100644 index 00000000000..01c1ef14747 --- /dev/null +++ b/webhook/i18n/ru.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Создан" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/sk.po b/webhook/i18n/sk.po new file mode 100644 index 00000000000..9b4e7454ceb --- /dev/null +++ b/webhook/i18n/sk.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktívne" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/sl.po b/webhook/i18n/sl.po new file mode 100644 index 00000000000..ee5acb1e541 --- /dev/null +++ b/webhook/i18n/sl.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktivno" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/sr.po b/webhook/i18n/sr.po new file mode 100644 index 00000000000..8542d4a9ac9 --- /dev/null +++ b/webhook/i18n/sr.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/sr@latin.po b/webhook/i18n/sr@latin.po new file mode 100644 index 00000000000..9072df7981c --- /dev/null +++ b/webhook/i18n/sr@latin.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/sv.po b/webhook/i18n/sv.po new file mode 100644 index 00000000000..7176bf782c7 --- /dev/null +++ b/webhook/i18n/sv.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/th.po b/webhook/i18n/th.po new file mode 100644 index 00000000000..e6d6ad6c816 --- /dev/null +++ b/webhook/i18n/th.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "รหัส" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/tr.po b/webhook/i18n/tr.po new file mode 100644 index 00000000000..77364d91cb0 --- /dev/null +++ b/webhook/i18n/tr.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Aktif" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/tr_TR.po b/webhook/i18n/tr_TR.po new file mode 100644 index 00000000000..1d0ac345ab0 --- /dev/null +++ b/webhook/i18n/tr_TR.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "Etkin" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "Kimlik" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/uk.po b/webhook/i18n/uk.po new file mode 100644 index 00000000000..f3174275146 --- /dev/null +++ b/webhook/i18n/uk.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/vi.po b/webhook/i18n/vi.po new file mode 100644 index 00000000000..85f5bf0f63a --- /dev/null +++ b/webhook/i18n/vi.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/vi_VN.po b/webhook/i18n/vi_VN.po new file mode 100644 index 00000000000..47368dc313a --- /dev/null +++ b/webhook/i18n/vi_VN.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/zh_CN.po b/webhook/i18n/zh_CN.po new file mode 100644 index 00000000000..6abcac15c99 --- /dev/null +++ b/webhook/i18n/zh_CN.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "有效" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "创建时间" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "ID" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/i18n/zh_TW.po b/webhook/i18n/zh_TW.po new file mode 100644 index 00000000000..d47e6111eb2 --- /dev/null +++ b/webhook/i18n/zh_TW.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * webhook +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:11+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_active +msgid "Active" +msgstr "" + +#. module: webhook +#: model:ir.ui.view,arch_db:webhook.view_webhook_form +msgid "Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_name +msgid "Consumer name" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_create_date +#: model:ir.model.fields,field_description:webhook.field_webhook_create_date +msgid "Created on" +msgstr "建立於" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_display_name +#: model:ir.model.fields,field_description:webhook.field_webhook_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_ip +msgid "Get IP" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_python_code_get_event +msgid "Get event" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_id +#: model:ir.model.fields,field_description:webhook.field_webhook_id +msgid "ID" +msgstr "編號" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_ids +#: model:ir.model.fields,field_description:webhook.field_webhook_address_name +msgid "IP or Network Address" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_name +msgid "" +"IP or network address of your consumer webhook:\n" +"ip address e.g.: 10.10.0.8\n" +"network address e.g. of: 10.10.0.8/24" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook___last_update +#: model:ir.model.fields,field_description:webhook.field_webhook_address___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_uid +#: model:ir.model.fields,field_description:webhook.field_webhook_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_write_date +#: model:ir.model.fields,field_description:webhook.field_webhook_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_name +msgid "" +"Name of your consumer webhook. This name will be used in named of event " +"methods" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:195 +#, python-format +msgid "Not defined methods \"%s\" yet" +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_event +msgid "" +"Python code to get event from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_python_code_get_ip +msgid "" +"Python code to get remote IP address from request data.\n" +"You have object.env.request variable with full webhook request." +msgstr "" + +#. module: webhook +#: model:ir.model.fields,help:webhook.field_webhook_address_ids +msgid "This address will be filter to know who is consumer webhook" +msgstr "" + +#. module: webhook +#: model:ir.actions.act_window,name:webhook.action_webhook +#: model:ir.model.fields,field_description:webhook.field_webhook_address_webhook_id +#: model:ir.ui.menu,name:webhook.webhook_menu_action +msgid "Webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/tests/test_webhook_post.py:30 +#, python-format +msgid "Wrong value received" +msgstr "" + +#. module: webhook +#: code:addons/webhook/models/webhook.py:183 +#, python-format +msgid "event is not defined" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook +msgid "webhook" +msgstr "" + +#. module: webhook +#: code:addons/webhook/controllers/main.py:38 +#, python-format +msgid "" +"webhook consumer [%s] from remote address [%s] not found jsonrequest [%s]" +msgstr "" + +#. module: webhook +#: model:ir.model,name:webhook.model_webhook_address +msgid "webhook.address" +msgstr "" diff --git a/webhook/models/__init__.py b/webhook/models/__init__.py new file mode 100644 index 00000000000..4c358179286 --- /dev/null +++ b/webhook/models/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import webhook diff --git a/webhook/models/webhook.py b/webhook/models/webhook.py new file mode 100644 index 00000000000..82374da0503 --- /dev/null +++ b/webhook/models/webhook.py @@ -0,0 +1,204 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging +import traceback + +from odoo import api, exceptions, fields, models, tools +from odoo.tools.safe_eval import safe_eval +from odoo.tools.translate import _ + +_logger = logging.getLogger(__name__) + +try: + import ipaddress +except ImportError as err: + _logger.debug(err) + + +class WebhookAddress(models.Model): + _name = 'webhook.address' + + name = fields.Char( + 'IP or Network Address', + required=True, + help='IP or network address of your consumer webhook:\n' + 'ip address e.g.: 10.10.0.8\n' + 'network address e.g. of: 10.10.0.8/24', + ) + webhook_id = fields.Many2one( + 'webhook', 'Webhook', required=True, ondelete='cascade') + + +class Webhook(models.Model): + _name = 'webhook' + + name = fields.Char( + 'Consumer name', + required=True, + help='Name of your consumer webhook. ' + 'This name will be used in named of event methods') + address_ids = fields.One2many( + 'webhook.address', 'webhook_id', 'IP or Network Address', + required=True, + help='This address will be filter to know who is ' + 'consumer webhook') + python_code_get_event = fields.Text( + 'Get event', + required=True, + help='Python code to get event from request data.\n' + 'You have object.env.request variable with full ' + 'webhook request.', + default='# You can use object.env.request variable ' + 'to get full data of webhook request.\n' + '# Example:\n#request.httprequest.' + 'headers.get("X-Github-Event")', + ) + python_code_get_ip = fields.Text( + 'Get IP', + required=True, + help='Python code to get remote IP address ' + 'from request data.\n' + 'You have object.env.request variable with full ' + 'webhook request.', + default='# You can use object.env.request variable ' + 'to get full data of webhook request.\n' + '# Example:\n' + '#object.env.request.httprequest.remote_addr' + '\nrequest.httprequest.remote_addr', + + ) + active = fields.Boolean(default=True) + + @api.multi + def process_python_code(self, python_code, request=None): + """ + Execute a python code with eval. + :param string python_code: Python code to process + :param object request: Request object with data of json + and http request + :return: Result of process python code. + """ + self.ensure_one() + res = None + eval_dict = { + 'user': self.env.user, + 'object': self, + 'request': request, + # copy context to prevent side-effects of eval + 'context': dict(self.env.context), + } + try: + res = safe_eval(python_code, eval_dict) + except BaseException: + error = tools.ustr(traceback.format_exc()) + _logger.debug( + 'python_code "%s" with dict [%s] error [%s]', + python_code, eval_dict, error) + if isinstance(res, str): + res = tools.ustr(res) + return res + + @api.model + def search_with_request(self, request): + """ + Method to search of all webhook + and return only one that match with remote address + and range of address. + :param object request: Request object with data of json + and http request + :return: object of webhook found or + if not found then return False + """ + for webhook in self.search([]): + remote_address = webhook.process_python_code( + webhook.python_code_get_ip, request) + if not remote_address: + continue + if webhook.is_address_range(remote_address): + return webhook + return False + + @api.multi + def is_address_range(self, remote_address): + """ + Check if a remote IP address is in range of one + IP or network address of current object data. + :param string remote_address: Remote IP address + :return: if remote address match then return True + else then return False + """ + self.ensure_one() + for address in self.address_ids: + ipn = ipaddress.ip_network(u'' + address.name) + hosts = [host.exploded for host in ipn.hosts()] + hosts.append(address.name) + if remote_address in hosts: + return True + return False + + @api.model + def get_event_methods(self, event_method_base): + """ + List all methods of current object that start with base name. + e.g. if exists methods called 'x1', 'x2' + and other ones called 'y1', 'y2' + if you have event_method_base='x' + Then will return ['x1', 'x2'] + :param string event_method_base: Name of method event base + returns: List of methods with that start wtih method base + """ + # TODO: Filter just callable attributes + return sorted( + attr for attr in dir(self) if attr.startswith( + event_method_base) + ) + + @api.model + def get_ping_events(self): + """ + List all name of event type ping. + This event is a dummy event just to + know if a provider is working. + :return: List with names of ping events + """ + return ['ping'] + + @api.multi + def run_webhook(self, request): + """ + Run methods to process a webhook event. + Get all methods with base name + 'run_CONSUMER_EVENT*' + Invoke all methods found. + :param object request: Request object with data of json + and http request + :return: True + """ + self.ensure_one() + event = self.process_python_code( + self.python_code_get_event, request) + if not event: + raise exceptions.ValidationError(_( + 'event is not defined')) + method_event_name_base = \ + 'run_' + self.name + \ + '_' + event + methods_event_name = self.get_event_methods(method_event_name_base) + if not methods_event_name: + # if is a 'ping' event then return True + # because the request is received fine. + if event in self.get_ping_events(): + return True + raise exceptions.ValidationError(_( + 'Not defined methods "%s" yet' % ( + method_event_name_base))) + self.env.request = request + for method_event_name in methods_event_name: + method = getattr(self, method_event_name) + res_method = method() + if isinstance(res_method, list) and len(res_method) == 1: + if res_method[0] is NotImplemented: + _logger.debug( + 'Not implemented method "%s" yet', method_event_name) + return True diff --git a/webhook/security/ir.model.access.csv b/webhook/security/ir.model.access.csv new file mode 100644 index 00000000000..93564dd8e83 --- /dev/null +++ b/webhook/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_webhook_address,access_webhook_address,model_webhook_address,base.group_system,1,1,1,1 +access_webhook,access_webhook,model_webhook,base.group_system,1,1,1,1 diff --git a/webhook/tests/__init__.py b/webhook/tests/__init__.py new file mode 100644 index 00000000000..721869244dc --- /dev/null +++ b/webhook/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_webhook_post diff --git a/webhook/tests/test_webhook_post.py b/webhook/tests/test_webhook_post.py new file mode 100644 index 00000000000..5989243bb7b --- /dev/null +++ b/webhook/tests/test_webhook_post.py @@ -0,0 +1,123 @@ +# Copyright 2016 Vauxoo - https://www.vauxoo.com/ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import json +import requests + +from odoo.tests.common import HttpCase +from odoo import api, exceptions, tools, models +from odoo.tools.translate import _ + + +HOST = '127.0.0.1' +PORT = tools.config['http_port'] + + +class Webhook(models.Model): + _inherit = 'webhook' + + @api.multi + def run_wehook_test_get_foo(self): + """ + This method is just to test webhook. + This needs receive a json request with + next json values: {'foo': 'bar'} + If value is different will raise a error. + """ + self.ensure_one() + if self.env.request.jsonrequest['foo'] != 'bar': + raise exceptions.ValidationError(_("Wrong value received")) + + +class FakeHttpRequest(object): + remote_address = None + headers = {} + + +class FakeRequest(object): + def __init__(self, **args): + self.httprequest = FakeHttpRequest() + + +class TestWebhookPost(HttpCase): + def setUp(self): + super(TestWebhookPost, self).setUp() + self.webhook = self.env['webhook'] + self.url_base = "http://%s:%s" % (HOST, PORT) + self.url = self.get_webhook_url() + + def get_webhook_url(self, url='/webhook', + webhook_name="wehook_test"): + """ + :param string url: Full url of last url of webhook to use. + If you use a full url will return url + plus session_id + default: /webhook + :param string webhook_name: Name of webhook to process + default: webhook_test + :return: url with + http://IP:PORT/webhook/webhook_name?session_id=### + """ + webhook_name = webhook_name.replace('/', '') + if url.startswith('/'): + url = self.url_base + url + '/' + webhook_name + url += '?session_id=' + self.session_id + return url + + def post_webhook_event(self, event, url, data, remote_ip=None, + headers=None, params=None): + """ + :param string event String: Name of webhook event. + :param string url: Full url of webhook services. + :param dict data: Payload data of request. + :param string remote_ip: Remote IP of webhook to set in + test variable. + :param dict headers: Request headers with main data. + :param dict params: Extra values to send to webhook. + """ + if headers is None: + headers = {} + if remote_ip is None: + remote_ip = '127.0.0.1' + headers.update({ + 'X-Webhook-Test-Event': event, + 'X-Webhook-Test-Address': remote_ip, + }) + headers.setdefault('accept', 'application/json') + headers.setdefault('content-type', 'application/json') + payload = json.dumps(data) + response = requests.request( + "POST", url, data=payload, + headers=headers, params=params) + return response.json() + + def test_webhook_ping(self): + """ + Test to check that 'ping' generic method work fine! + 'ping' event don't need to add it in inherit class. + """ + json_response = self.post_webhook_event( + 'ping', self.url, {}) + has_error = json_response.get('error', False) + self.assertEqual( + has_error, False, 'Error in webhook ping test!') + + def test_webhook_get_foo(self): + """ + Test to check that 'get_foo' event from 'webhook_test' + work fine! + This event is defined in inherit method of test. + """ + json_response = self.post_webhook_event( + 'get_foo', self.url, {'foo': 'bar'}) + self.assertEqual( + json_response.get('error', False), False, + 'Error in webhook get foo test!.') + + def test_webhook_search_with_request(self): + """Test to check that 'search_with_request' method works!""" + fake_req = FakeRequest() + fake_req.httprequest.headers['X-Webhook-Test-Address'] = '127.0.0.1' + wh = self.webhook.search_with_request(fake_req) + self.assertEqual(wh.id, self.env.ref('webhook.webhook_test').id, + "Search webhook from request IP info is not working") diff --git a/webhook/views/webhook_views.xml b/webhook/views/webhook_views.xml new file mode 100644 index 00000000000..87f68250e27 --- /dev/null +++ b/webhook/views/webhook_views.xml @@ -0,0 +1,42 @@ + + + + + view.webhook.form + webhook + + +
+ + + + + + + + + + +
+
+
+ + view.webhook.tree + webhook + + + + + + + + + + Webhook + webhook + form + tree,form + + + +