From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/google_recaptcha/__init__.py | 4 + addons/google_recaptcha/__manifest__.py | 18 +++ addons/google_recaptcha/i18n/ar.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/bg.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/bn.po | 141 +++++++++++++++++++ addons/google_recaptcha/i18n/ca.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/ckb.po | 141 +++++++++++++++++++ addons/google_recaptcha/i18n/cs.po | 146 ++++++++++++++++++++ addons/google_recaptcha/i18n/da.po | 147 ++++++++++++++++++++ addons/google_recaptcha/i18n/de.po | 145 ++++++++++++++++++++ addons/google_recaptcha/i18n/el.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/eo.po | 137 +++++++++++++++++++ addons/google_recaptcha/i18n/es.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/es_MX.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/et.po | 141 +++++++++++++++++++ addons/google_recaptcha/i18n/eu.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/fa.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/fi.po | 146 ++++++++++++++++++++ addons/google_recaptcha/i18n/fr.po | 148 ++++++++++++++++++++ addons/google_recaptcha/i18n/google_recaptcha.pot | 137 +++++++++++++++++++ addons/google_recaptcha/i18n/he.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/hi.po | 137 +++++++++++++++++++ addons/google_recaptcha/i18n/hr.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/hu.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/id.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/it.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/ja.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/ka.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/km.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/ko.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/lt.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/lv.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/mn.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/nb.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/nl.po | 145 ++++++++++++++++++++ addons/google_recaptcha/i18n/pl.po | 149 +++++++++++++++++++++ addons/google_recaptcha/i18n/pt.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/pt_BR.po | 146 ++++++++++++++++++++ addons/google_recaptcha/i18n/ro.po | 145 ++++++++++++++++++++ addons/google_recaptcha/i18n/ru.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/si.po | 137 +++++++++++++++++++ addons/google_recaptcha/i18n/sk.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/sl.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/sv.po | 143 ++++++++++++++++++++ addons/google_recaptcha/i18n/th.po | 142 ++++++++++++++++++++ addons/google_recaptcha/i18n/tr.po | 149 +++++++++++++++++++++ addons/google_recaptcha/i18n/uk.po | 144 ++++++++++++++++++++ addons/google_recaptcha/i18n/ur.po | 137 +++++++++++++++++++ addons/google_recaptcha/i18n/vi.po | 146 ++++++++++++++++++++ addons/google_recaptcha/i18n/zh_CN.po | 147 ++++++++++++++++++++ addons/google_recaptcha/i18n/zh_TW.po | 141 +++++++++++++++++++ addons/google_recaptcha/models/__init__.py | 5 + addons/google_recaptcha/models/ir_http.py | 96 +++++++++++++ .../google_recaptcha/models/res_config_settings.py | 13 ++ addons/google_recaptcha/static/src/js/recaptcha.js | 60 +++++++++ .../static/src/scss/recaptcha.scss | 5 + .../google_recaptcha/static/src/xml/recaptcha.xml | 14 ++ addons/google_recaptcha/views/assets.xml | 17 +++ .../views/res_config_settings_view.xml | 31 +++++ 59 files changed, 7278 insertions(+) create mode 100644 addons/google_recaptcha/__init__.py create mode 100644 addons/google_recaptcha/__manifest__.py create mode 100644 addons/google_recaptcha/i18n/ar.po create mode 100644 addons/google_recaptcha/i18n/bg.po create mode 100644 addons/google_recaptcha/i18n/bn.po create mode 100644 addons/google_recaptcha/i18n/ca.po create mode 100644 addons/google_recaptcha/i18n/ckb.po create mode 100644 addons/google_recaptcha/i18n/cs.po create mode 100644 addons/google_recaptcha/i18n/da.po create mode 100644 addons/google_recaptcha/i18n/de.po create mode 100644 addons/google_recaptcha/i18n/el.po create mode 100644 addons/google_recaptcha/i18n/eo.po create mode 100644 addons/google_recaptcha/i18n/es.po create mode 100644 addons/google_recaptcha/i18n/es_MX.po create mode 100644 addons/google_recaptcha/i18n/et.po create mode 100644 addons/google_recaptcha/i18n/eu.po create mode 100644 addons/google_recaptcha/i18n/fa.po create mode 100644 addons/google_recaptcha/i18n/fi.po create mode 100644 addons/google_recaptcha/i18n/fr.po create mode 100644 addons/google_recaptcha/i18n/google_recaptcha.pot create mode 100644 addons/google_recaptcha/i18n/he.po create mode 100644 addons/google_recaptcha/i18n/hi.po create mode 100644 addons/google_recaptcha/i18n/hr.po create mode 100644 addons/google_recaptcha/i18n/hu.po create mode 100644 addons/google_recaptcha/i18n/id.po create mode 100644 addons/google_recaptcha/i18n/it.po create mode 100644 addons/google_recaptcha/i18n/ja.po create mode 100644 addons/google_recaptcha/i18n/ka.po create mode 100644 addons/google_recaptcha/i18n/km.po create mode 100644 addons/google_recaptcha/i18n/ko.po create mode 100644 addons/google_recaptcha/i18n/lt.po create mode 100644 addons/google_recaptcha/i18n/lv.po create mode 100644 addons/google_recaptcha/i18n/mn.po create mode 100644 addons/google_recaptcha/i18n/nb.po create mode 100644 addons/google_recaptcha/i18n/nl.po create mode 100644 addons/google_recaptcha/i18n/pl.po create mode 100644 addons/google_recaptcha/i18n/pt.po create mode 100644 addons/google_recaptcha/i18n/pt_BR.po create mode 100644 addons/google_recaptcha/i18n/ro.po create mode 100644 addons/google_recaptcha/i18n/ru.po create mode 100644 addons/google_recaptcha/i18n/si.po create mode 100644 addons/google_recaptcha/i18n/sk.po create mode 100644 addons/google_recaptcha/i18n/sl.po create mode 100644 addons/google_recaptcha/i18n/sv.po create mode 100644 addons/google_recaptcha/i18n/th.po create mode 100644 addons/google_recaptcha/i18n/tr.po create mode 100644 addons/google_recaptcha/i18n/uk.po create mode 100644 addons/google_recaptcha/i18n/ur.po create mode 100644 addons/google_recaptcha/i18n/vi.po create mode 100644 addons/google_recaptcha/i18n/zh_CN.po create mode 100644 addons/google_recaptcha/i18n/zh_TW.po create mode 100644 addons/google_recaptcha/models/__init__.py create mode 100644 addons/google_recaptcha/models/ir_http.py create mode 100644 addons/google_recaptcha/models/res_config_settings.py create mode 100644 addons/google_recaptcha/static/src/js/recaptcha.js create mode 100644 addons/google_recaptcha/static/src/scss/recaptcha.scss create mode 100644 addons/google_recaptcha/static/src/xml/recaptcha.xml create mode 100644 addons/google_recaptcha/views/assets.xml create mode 100644 addons/google_recaptcha/views/res_config_settings_view.xml (limited to 'addons/google_recaptcha') diff --git a/addons/google_recaptcha/__init__.py b/addons/google_recaptcha/__init__.py new file mode 100644 index 00000000..dc5e6b69 --- /dev/null +++ b/addons/google_recaptcha/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/addons/google_recaptcha/__manifest__.py b/addons/google_recaptcha/__manifest__.py new file mode 100644 index 00000000..4972bbbe --- /dev/null +++ b/addons/google_recaptcha/__manifest__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Google reCAPTCHA integration', + 'category': 'Hidden', + 'version': '1.0', + 'description': """ + This module implements reCaptchaV3 so that you can prevent bot spam on your public modules. + """, + 'depends': ['base_setup'], + 'data': [ + 'views/assets.xml', + 'views/res_config_settings_view.xml', + ], + 'auto_install': False, + 'license': 'LGPL-3', +} diff --git a/addons/google_recaptcha/i18n/ar.po b/addons/google_recaptcha/i18n/ar.po new file mode 100644 index 00000000..e4aa1b6d --- /dev/null +++ b/addons/google_recaptcha/i18n/ar.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Sherif Abd Ekmoniem , 2020 +# Mustafa Rawi , 2020 +# Osama Ahmaro , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Osama Ahmaro , 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "مسار HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "المُعرف" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "مفتاح سري" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/bg.po b/addons/google_recaptcha/i18n/bg.po new file mode 100644 index 00000000..0f1cd405 --- /dev/null +++ b/addons/google_recaptcha/i18n/bg.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Kaloyan Naumov , 2020 +# Igor Sheludko , 2020 +# Albena Mincheva , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Albena Mincheva , 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Минимален резултат" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Таен ключ" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/bn.po b/addons/google_recaptcha/i18n/bn.po new file mode 100644 index 00000000..52fe1a51 --- /dev/null +++ b/addons/google_recaptcha/i18n/bn.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Abu Zafar , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Abu Zafar , 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "এইচটিটিপি রাউটিং" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "আইডি " + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "গোপন চাবি" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ca.po b/addons/google_recaptcha/i18n/ca.po new file mode 100644 index 00000000..fce31154 --- /dev/null +++ b/addons/google_recaptcha/i18n/ca.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# M Palau , 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutament HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ckb.po b/addons/google_recaptcha/i18n/ckb.po new file mode 100644 index 00000000..2143504c --- /dev/null +++ b/addons/google_recaptcha/i18n/ckb.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Haval Abdulkarim , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Haval Abdulkarim , 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ناسنامە" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/cs.po b/addons/google_recaptcha/i18n/cs.po new file mode 100644 index 00000000..41d1bef3 --- /dev/null +++ b/addons/google_recaptcha/i18n/cs.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka , 2020 +# karolína schusterová , 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Vygenerujte klíčové stránky / tajné klíče " +"pro typ v3 reCaptcha" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimální skóre" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Není nastaven žádný klíč webu recaptcha." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Zásady ochrany osobních údajů" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Chráněno reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Tajný klíč" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Mělo by být mezi 0,0 a 1,0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Klíč webu" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Podmínky služby" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Soukromý klíč recaptcha je neplatný." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Token recaptcha je neplatný." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Klíč webu recaptcha je neplatný." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Požadavek je neplatný nebo má nesprávný tvar." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Časový limit vašeho požadavku vypršel, zkuste to prosím znovu." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "aplikovat." diff --git a/addons/google_recaptcha/i18n/da.po b/addons/google_recaptcha/i18n/da.po new file mode 100644 index 00000000..c5c301c2 --- /dev/null +++ b/addons/google_recaptcha/i18n/da.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Morten Schou , 2020 +# Jesper Carstensen , 2020 +# Sanne Kristensen , 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Mads Søndergaard , 2021\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Generer hjemmeside/hemmelig nøgler for v3 " +"reCaptcha type" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimum score" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Ingen recaptcha sidenøgle angivet." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Privatlivspolitik" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Beskyttet af reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Hemmelig nøgle" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Bør være mellem 0,0 og 1,0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Hjemmeside Nøgle" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Servicevilkår" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Den private reCaptcha nøgle er ugyldig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "reCaptcha tokenen er ugyldig." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Recaptcha sidenøglen er ugyldig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Anmodningen er ugyldig eller misdannet." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Din anmodning er udløbet, prøv venligst igen." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "anvend." diff --git a/addons/google_recaptcha/i18n/de.po b/addons/google_recaptcha/i18n/de.po new file mode 100644 index 00000000..32c4a0a4 --- /dev/null +++ b/addons/google_recaptcha/i18n/de.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Andreas Schmidt , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Andreas Schmidt , 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Site-/Geheimschlüssel für v3 reCaptcha-Typ " +"generieren" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Mindestscore" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Kein Recaptcha-Site-Schlüssel gesetzt." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Datenschutzerklärung" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Geschützt durch reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Geheimer Schlüssel" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Sollte zwischen 0,0 und 1,0 liegen" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Site Key" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Der private Schlüssel von reCaptcha ist ungültig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Das reCaptcha-Token ist ungültig." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Der Recaptcha-Site-Schlüssel ist ungültig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Die Anfrage ist ungültig oder fehlerhaft." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" +"Ihre Anfrage hat eine Zeitüberschreitung, bitte versuchen Sie es erneut." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "apply." diff --git a/addons/google_recaptcha/i18n/el.po b/addons/google_recaptcha/i18n/el.po new file mode 100644 index 00000000..2a845ed5 --- /dev/null +++ b/addons/google_recaptcha/i18n/el.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis , 2020 +# Alexandros Kapetanios , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Alexandros Kapetanios , 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "Κωδικός" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Κρυφό Κλειδί" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/eo.po b/addons/google_recaptcha/i18n/eo.po new file mode 100644 index 00000000..2d774fbf --- /dev/null +++ b/addons/google_recaptcha/i18n/eo.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha public key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha public key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/es.po b/addons/google_recaptcha/i18n/es.po new file mode 100644 index 00000000..41f0d446 --- /dev/null +++ b/addons/google_recaptcha/i18n/es.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Braulio D. López Vázquez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Braulio D. López Vázquez , 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Generar claves de sitio / secretas para el " +"tipo de reCaptcha v3" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Puntuación mínima" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "No hay clave de sitio de recaptcha establecida." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Política de privacidad" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protegido por reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Clave secreta" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Debe estar entre 0.0 y 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Clave del sitio" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Términos de Servicio" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "La clave privada de reCaptcha es inválida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "El token de reCaptcha es inválido." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "La clave de sitio de recaptcha es inválida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "La solicitud es inválida o tiene un formato incorrecto." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Se agotó el tiempo de espera de tu solicitud. Vuelve a intentarlo." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "aplicar." diff --git a/addons/google_recaptcha/i18n/es_MX.po b/addons/google_recaptcha/i18n/es_MX.po new file mode 100644 index 00000000..15bcd8d2 --- /dev/null +++ b/addons/google_recaptcha/i18n/es_MX.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Cécile Collart , 2021 +# Braulio D. López Vázquez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Braulio D. López Vázquez , 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Generar claves de sitio / secretas para el " +"tipo de reCaptcha v3" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Puntuación mínima" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "No hay clave de sitio de recaptcha establecida." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Política de privacidad" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protegido por reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Clave secreta" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Debe estar entre 0.0 y 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Clave del sitio" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Términos de servicio" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "La clave privada de reCaptcha es inválida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "El token de reCaptcha es inválido." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "La clave de sitio de recaptcha es inválida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "La solicitud es inválida o tiene un formato incorrecto." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Se agotó el tiempo de espera de su solicitud. Vuelva a intentarlo." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "aplicar." diff --git a/addons/google_recaptcha/i18n/et.po b/addons/google_recaptcha/i18n/et.po new file mode 100644 index 00000000..9283cb52 --- /dev/null +++ b/addons/google_recaptcha/i18n/et.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Triine Aavik , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Triine Aavik , 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Miinimumskoor" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/eu.po b/addons/google_recaptcha/i18n/eu.po new file mode 100644 index 00000000..102e4799 --- /dev/null +++ b/addons/google_recaptcha/i18n/eu.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2021 +# Eneko , 2021 +# Maialen Rodriguez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Maialen Rodriguez , 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP bideratzea" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Gutxieneko emaitza" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/fa.po b/addons/google_recaptcha/i18n/fa.po new file mode 100644 index 00000000..1a72fea3 --- /dev/null +++ b/addons/google_recaptcha/i18n/fa.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Hamid Darabi, 2020 +# Hamed Mohammadi , 2020 +# Mohsen Mohammadi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Mohsen Mohammadi , 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/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=2; plural=(n > 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "مسیریابی HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "شناسه" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "باید بین 0.0 و 1.0 باشد" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/fi.po b/addons/google_recaptcha/i18n/fi.po new file mode 100644 index 00000000..701d4d92 --- /dev/null +++ b/addons/google_recaptcha/i18n/fi.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Kari Lindgren , 2020 +# Jarmo Kortetjärvi , 2020 +# Tuomo Aura , 2020 +# Veikko Väätäjä , 2020 +# Mikko Närjänen , 2020 +# Jussi Heikkilä , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Jussi Heikkilä , 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-reititys" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimipisteet" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/fr.po b/addons/google_recaptcha/i18n/fr.po new file mode 100644 index 00000000..15bf42c2 --- /dev/null +++ b/addons/google_recaptcha/i18n/fr.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse , 2020 +# William Olhasque , 2020 +# Cécile Collart , 2020 +# Gilles Mangin , 2020 +# Saad Thaifa , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Saad Thaifa , 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Générer une clé secrète pour reCaptcha de " +"type v3" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Routage HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Score minimum" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Aucune clé recaptcha du site n'est renseignée" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Politique de confidentialité" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protégé par reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Clé secrète" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Doit être compris entre 0,0 et 1,0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Clé du site" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Termes de service" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "La clé privée reCaptcha est invalide." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Le jeton reCaptcha n'est pas valide." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "La clé recaptcha du site n'est pas valide." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "La demande est invalide ou mal formée" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Votre demande a expirée, veuillez ressayer." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "Appliquer" diff --git a/addons/google_recaptcha/i18n/google_recaptcha.pot b/addons/google_recaptcha/i18n/google_recaptcha.pot new file mode 100644 index 00000000..aa847ff8 --- /dev/null +++ b/addons/google_recaptcha/i18n/google_recaptcha.pot @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-01 07:29+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/he.po b/addons/google_recaptcha/i18n/he.po new file mode 100644 index 00000000..c496ac8f --- /dev/null +++ b/addons/google_recaptcha/i18n/he.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# דודי מלכה , 2020 +# ZVI BLONDER , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: ZVI BLONDER , 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "ניתוב HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "מזהה" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/hi.po b/addons/google_recaptcha/i18n/hi.po new file mode 100644 index 00000000..dceed2eb --- /dev/null +++ b/addons/google_recaptcha/i18n/hi.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/hr.po b/addons/google_recaptcha/i18n/hr.po new file mode 100644 index 00000000..fbc419de --- /dev/null +++ b/addons/google_recaptcha/i18n/hr.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Bole , 2020 +# Marko Carević , 2020 +# Vojislav Opačić , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Vojislav Opačić , 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimalni rezultat" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/hu.po b/addons/google_recaptcha/i18n/hu.po new file mode 100644 index 00000000..334b964c --- /dev/null +++ b/addons/google_recaptcha/i18n/hu.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Ákos Nagy , 2021 +# Zsolt Godó , 2021 +# Tamás Németh , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Tamás Németh , 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP irányítás" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "Azonosító" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Titkos kulcs" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "0,0 és 1,0 között kell lennie" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/id.po b/addons/google_recaptcha/i18n/id.po new file mode 100644 index 00000000..0e836b9a --- /dev/null +++ b/addons/google_recaptcha/i18n/id.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# pnyet , 2020 +# Altela Eleviansyah Pramardhika , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Altela Eleviansyah Pramardhika , 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/it.po b/addons/google_recaptcha/i18n/it.po new file mode 100644 index 00000000..6db82841 --- /dev/null +++ b/addons/google_recaptcha/i18n/it.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Léonie Bouchat , 2020 +# Sergio Zanchetta , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Sergio Zanchetta , 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Genera chiavi segrete/sito per reCAPTCHA v3" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Instradamento HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Punteggio minimo" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Nessuna chiave reCAPTCHA del sito impostata." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Politica privacy" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protetto da reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Chiave privata" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Deve essere tra 0,0 e 1,0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Chiave sito" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Termini di servizio" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "La chiave privata reCAPTCHA non è valida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Il token reCAPTCHA non è valido." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "La chiave reCAPTCHA del sito non è valida." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "La richiesta è non valida o non corretta." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Richiesta scaduta, riprovare." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ja.po b/addons/google_recaptcha/i18n/ja.po new file mode 100644 index 00000000..3774ad5f --- /dev/null +++ b/addons/google_recaptcha/i18n/ja.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Shunho Kin , 2020 +# Yoshi Tashiro , 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTPルーティング" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "最小スコア" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ka.po b/addons/google_recaptcha/i18n/ka.po new file mode 100644 index 00000000..d2931ebc --- /dev/null +++ b/addons/google_recaptcha/i18n/ka.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Davit Matchakhelidze , 2021 +# Mari Khomeriki , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Mari Khomeriki , 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/km.po b/addons/google_recaptcha/i18n/km.po new file mode 100644 index 00000000..c4ce949a --- /dev/null +++ b/addons/google_recaptcha/i18n/km.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Sengtha Chay , 2020 +# Lux Sok , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Lux Sok , 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "កំណត់រចនាសម្ព័ន្ធ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP ជុំវិញ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "កូនសោសម្ងាត់" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ko.po b/addons/google_recaptcha/i18n/ko.po new file mode 100644 index 00000000..cfd76cbe --- /dev/null +++ b/addons/google_recaptcha/i18n/ko.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI , 2020 +# Linkup , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Linkup , 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 라우팅" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "최소 점수" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "비밀 키" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/lt.po b/addons/google_recaptcha/i18n/lt.po new file mode 100644 index 00000000..57a65074 --- /dev/null +++ b/addons/google_recaptcha/i18n/lt.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" , 2021 +# Linas Versada , 2021 +# Paulius Briedis , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Paulius Briedis , 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP nukreipimas" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Mažiausia taškų" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Slaptas raktas" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/lv.po b/addons/google_recaptcha/i18n/lv.po new file mode 100644 index 00000000..fa6541da --- /dev/null +++ b/addons/google_recaptcha/i18n/lv.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Arnis Putniņš , 2020 +# ievaputnina , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: ievaputnina , 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas iestatījumi" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/mn.po b/addons/google_recaptcha/i18n/mn.po new file mode 100644 index 00000000..8c4d1b35 --- /dev/null +++ b/addons/google_recaptcha/i18n/mn.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# tserendavaa tsogtoo , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: tserendavaa tsogtoo , 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Хамгийн бага оноо" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Нууц түлхүүр" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/nb.po b/addons/google_recaptcha/i18n/nb.po new file mode 100644 index 00000000..6f2c105c --- /dev/null +++ b/addons/google_recaptcha/i18n/nb.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Marius Stedjan , 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-ruting" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimums-score" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Hemmelig nøkkel" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/nl.po b/addons/google_recaptcha/i18n/nl.po new file mode 100644 index 00000000..ad969432 --- /dev/null +++ b/addons/google_recaptcha/i18n/nl.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken , 2020 +# Erwin van der Ploeg (Odoo Experts) , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Erwin van der Ploeg (Odoo Experts) , 2021\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Genereer site/geheime sleutels voor v3 " +"reCaptcha-type" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimum score" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Geen recaptcha-site sleutelset." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Privacybeleid" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Beschermd door reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Geheime sleutel" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Moet tussen 0,0 en 1,0 liggen" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Site Sleutel" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Servicevoorwaarden" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "De privésleutel van reCaptcha is ongeldig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Het reCaptcha-token is ongeldig." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "De recaptcha-sitesleutel is ongeldig." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Het verzoek is ongeldig of onjuist opgemaakt." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Uw verzoek is verlopen, probeer het opnieuw." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "toepassen." diff --git a/addons/google_recaptcha/i18n/pl.po b/addons/google_recaptcha/i18n/pl.po new file mode 100644 index 00000000..3f642fb9 --- /dev/null +++ b/addons/google_recaptcha/i18n/pl.po @@ -0,0 +1,149 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Dariusz Żbikowski , 2020 +# Marcin Młynarczyk , 2020 +# Piotr Cierkosz , 2020 +# Paweł Wodyński , 2020 +# Maja Stawicka , 2020 +# Maksym , 2020 +# Piotr Strębski , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Piotr Strębski , 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Wygeneruj klucze witryny / tajne dla typu " +"reCaptcha v3" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Wytyczanie HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimalny wynik" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Brak zestawu kluczy witryny recaptcha." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Polityka Prywatności" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Chronione przez reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Sekretny klucz" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Powinno być pomiędzy 0.0 i 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Klucz strony" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Warunki usługi" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Prywatny klucz reCaptcha jest nieprawidłowy" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Token reCaptcha jest nieprawidłowy." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Klucz witryny recaptcha jest nieprawidłowy." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Żądanie jest nieprawidłowe lub źle sformułowane." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Upłynął limit czasu żądania, spróbuj ponownie." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "Zastosuj." diff --git a/addons/google_recaptcha/i18n/pt.po b/addons/google_recaptcha/i18n/pt.po new file mode 100644 index 00000000..6913c0cd --- /dev/null +++ b/addons/google_recaptcha/i18n/pt.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# cafonso , 2020 +# Reinaldo Ramos , 2020 +# Pedro Filipe , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Pedro Filipe , 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Rotas HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Chave secreta" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/pt_BR.po b/addons/google_recaptcha/i18n/pt_BR.po new file mode 100644 index 00000000..617710cc --- /dev/null +++ b/addons/google_recaptcha/i18n/pt_BR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo , 2020 +# Mateus Lopes , 2020 +# grazziano , 2020 +# Yannick Belot , 2020 +# André Augusto Firmino Cordeiro , 2020 +# Éder Brito , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Éder Brito , 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Roteamento HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Pontuação mínima" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/ro.po b/addons/google_recaptcha/i18n/ro.po new file mode 100644 index 00000000..b215f04d --- /dev/null +++ b/addons/google_recaptcha/i18n/ro.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu , 2020 +# sharkutz , 2020 +# Hongu Cosmin , 2020 +# Foldi Robert , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Foldi Robert , 2021\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Rutare HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Scor minim" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Privacy Policy" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protejat de reCAPTCHA" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Cheie Secretă" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Ar trebui să fie intre 0.0 și 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Termeni și condiții" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Cheița privată reCaptcha nu este validă" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Jetonul reCaptcha nu este valid" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Cheia site-ului Recaptcha nu este validă." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Solicitarea este nevalidă sau greșită." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Solicitarea dvs. a expirat, vă rugăm să reîncercați." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "aplicare" diff --git a/addons/google_recaptcha/i18n/ru.po b/addons/google_recaptcha/i18n/ru.po new file mode 100644 index 00000000..5e8b7890 --- /dev/null +++ b/addons/google_recaptcha/i18n/ru.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Vasiliy Korobatov , 2020 +# ILMIR , 2020 +# Irina Fedulova , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Irina Fedulova , 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизация HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "Идентификатор" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Минимальная оценка" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Политика конфиденциальности" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Защищено reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Секретный ключ" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Условия обслуживания" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "применить." diff --git a/addons/google_recaptcha/i18n/si.po b/addons/google_recaptcha/i18n/si.po new file mode 100644 index 00000000..ba801078 --- /dev/null +++ b/addons/google_recaptcha/i18n/si.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/sk.po b/addons/google_recaptcha/i18n/sk.po new file mode 100644 index 00000000..76470545 --- /dev/null +++ b/addons/google_recaptcha/i18n/sk.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Jan Prokop, 2020 +# Rastislav Brenčič , 2020 +# Rastislav Brencic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Rastislav Brencic , 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP smerovanie" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimálne výsledky" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/sl.po b/addons/google_recaptcha/i18n/sl.po new file mode 100644 index 00000000..9ef972e9 --- /dev/null +++ b/addons/google_recaptcha/i18n/sl.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Matjaz Mozetic , 2021 +# matjaz k , 2021 +# Grega Vavtar , 2021 +# Tadej Lupšina , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Tadej Lupšina , 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmerjanje" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/sv.po b/addons/google_recaptcha/i18n/sv.po new file mode 100644 index 00000000..d615cb54 --- /dev/null +++ b/addons/google_recaptcha/i18n/sv.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist , 2021 +# Jakob Krabbe , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Jakob Krabbe , 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-rutt" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/th.po b/addons/google_recaptcha/i18n/th.po new file mode 100644 index 00000000..606cfd50 --- /dev/null +++ b/addons/google_recaptcha/i18n/th.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Odoo Thaidev , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Odoo Thaidev , 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "การตั้งค่า" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "See http://openerp.com" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "รหัส" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/tr.po b/addons/google_recaptcha/i18n/tr.po new file mode 100644 index 00000000..a4647ddf --- /dev/null +++ b/addons/google_recaptcha/i18n/tr.po @@ -0,0 +1,149 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Levent Karakaş , 2020 +# Murat Kaplan , 2020 +# Ertuğrul Güreş , 2020 +# Fırat Kaya , 2020 +# Umur Akın , 2020 +# abc Def , 2020 +# Nadir Gazioglu , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Nadir Gazioglu , 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Generate site/secret keys for v3 reCaptcha " +"type" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Yönlendirme" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Minimum puan" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Privacy Policy" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protected by reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Gizli Şifre" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Should be between 0.0 and 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Site Key" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Terms of Service" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "The reCaptcha private key is invalid." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "The reCaptcha token is invalid." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "The request is invalid or malformed." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Your request has timed out, please retry." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "apply." diff --git a/addons/google_recaptcha/i18n/uk.po b/addons/google_recaptcha/i18n/uk.po new file mode 100644 index 00000000..280ae02d --- /dev/null +++ b/addons/google_recaptcha/i18n/uk.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Alina Lisnenko , 2021\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Створити секретний ключ для типу v3 " +"reCaptcha" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизація HTTP" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Мінімальна оцінка" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "Не встановлено ключа сайту recaptcha." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Політика приватності" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Захищено reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Секретний ключ" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Має бути між 0.0 та 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Ключ сайту" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Умови надання послуг" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "Приватний ключ reCaptcha недійсний." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "Токен reCaptcha недійсний." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "Ключ сайту recaptcha недійсний." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Ваш запит недійсний чи неправильно сформований." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Термін вашого запиту минув, спробуйте ще раз." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "застосувати." diff --git a/addons/google_recaptcha/i18n/ur.po b/addons/google_recaptcha/i18n/ur.po new file mode 100644 index 00000000..34434b9c --- /dev/null +++ b/addons/google_recaptcha/i18n/ur.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "" diff --git a/addons/google_recaptcha/i18n/vi.po b/addons/google_recaptcha/i18n/vi.po new file mode 100644 index 00000000..81dd0bd9 --- /dev/null +++ b/addons/google_recaptcha/i18n/vi.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Nancy Momoland , 2020 +# Duy BQ , 2020 +# Dung Nguyen Thi , 2020 +# Trần Hà , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: Trần Hà , 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "" +" Generate site/secret keys for v3 reCaptcha " +"type" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "Điểm tối thiểu" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "Privacy Policy" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "Protected by reCAPTCHA," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "Secret Key" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "Should be between 0.0 and 1.0" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "Site Key" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "Terms of Service" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "The reCaptcha private key is invalid." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "The reCaptcha token is invalid." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "The request is invalid or malformed." + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "Your request has timed out, please retry." + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "apply." diff --git a/addons/google_recaptcha/i18n/zh_CN.po b/addons/google_recaptcha/i18n/zh_CN.po new file mode 100644 index 00000000..639a9a9b --- /dev/null +++ b/addons/google_recaptcha/i18n/zh_CN.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan , 2020 +# 敬雲 林 , 2020 +# ChinaMaker , 2020 +# Felix Yang - Elico Corp , 2020 +# 稀饭~~ , 2020 +# liAnGjiA , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: liAnGjiA , 2021\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr "‎为 v3 reCapcha 类型生成站点/密钥‎" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "最小得分" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "未设置recaptcha站点密钥。" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "‎隐私政策‎" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "‎由谷歌生物验证码防护,‎" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "密钥" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "‎应介于 0.0 和 1.0 之间‎" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "‎站点密钥‎" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "‎服务条款‎" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "谷歌生物验证码私钥无效。‎" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr "谷歌生物验证码令牌无效。‎" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "recaptcha站点密钥无效。" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "‎请求无效或格式错误。‎" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "‎您的请求已发出时间,请重试。‎" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "‎应用。‎" diff --git a/addons/google_recaptcha/i18n/zh_TW.po b/addons/google_recaptcha/i18n/zh_TW.po new file mode 100644 index 00000000..0ef1db36 --- /dev/null +++ b/addons/google_recaptcha/i18n/zh_TW.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * google_recaptcha +# +# Translators: +# 敬雲 林 , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:12+0000\n" +"Last-Translator: 敬雲 林 , 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/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: google_recaptcha +#: model_terms:ir.ui.view,arch_db:google_recaptcha.res_config_settings_view_form +msgid "" +" Generate site/secret keys for v3 reCaptcha " +"type" +msgstr " 為 v3 reCapcha 類型生成網站/密鑰" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__display_name +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: google_recaptcha +#: model:ir.model,name:google_recaptcha.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http__id +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__id +msgid "ID" +msgstr "ID" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_ir_http____last_update +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Minimum score" +msgstr "最低分" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "No recaptcha site key set." +msgstr "" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Privacy Policy" +msgstr "隱私權政策" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Protected by reCAPTCHA," +msgstr "由 reCAPTCHA 保護," + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_private_key +msgid "Secret Key" +msgstr "密鑰" + +#. module: google_recaptcha +#: model:ir.model.fields,help:google_recaptcha.field_res_config_settings__recaptcha_min_score +msgid "Should be between 0.0 and 1.0" +msgstr "應介於 0.0 和 1.0 之間。" + +#. module: google_recaptcha +#: model:ir.model.fields,field_description:google_recaptcha.field_res_config_settings__recaptcha_public_key +msgid "Site Key" +msgstr "網站密鑰" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "Terms of Service" +msgstr "服務條款" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha private key is invalid." +msgstr "reCaptcha private key無效。" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The reCaptcha token is invalid." +msgstr " reCaptcha token無效。" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/js/recaptcha.js:0 +#, python-format +msgid "The recaptcha site key is invalid." +msgstr "" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "該請求無效或格式錯誤。" + +#. module: google_recaptcha +#: code:addons/google_recaptcha/models/ir_http.py:0 +#, python-format +msgid "Your request has timed out, please retry." +msgstr "您的請求已發出時間,請重試。" + +#. module: google_recaptcha +#. openerp-web +#: code:addons/google_recaptcha/static/src/xml/recaptcha.xml:0 +#, python-format +msgid "apply." +msgstr "套用" diff --git a/addons/google_recaptcha/models/__init__.py b/addons/google_recaptcha/models/__init__.py new file mode 100644 index 00000000..2d6a3834 --- /dev/null +++ b/addons/google_recaptcha/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_http +from . import res_config_settings diff --git a/addons/google_recaptcha/models/ir_http.py b/addons/google_recaptcha/models/ir_http.py new file mode 100644 index 00000000..f0306cb1 --- /dev/null +++ b/addons/google_recaptcha/models/ir_http.py @@ -0,0 +1,96 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import logging +import requests + +from odoo import api, models, _ +from odoo.http import request +from odoo.exceptions import UserError, ValidationError + +logger = logging.getLogger(__name__) + + +class Http(models.AbstractModel): + _inherit = 'ir.http' + + @api.model + def _verify_request_recaptcha_token(self, action): + """ Verify the recaptcha token for the current request. + If no recaptcha private key is set the recaptcha verification + is considered inactive and this method will return True. + """ + ip_addr = request.httprequest.remote_addr + token = request.params.pop('recaptcha_token_response', False) + recaptcha_result = request.env['ir.http']._verify_recaptcha_token(ip_addr, token, action) + if recaptcha_result in ['is_human', 'no_secret']: + return True + if recaptcha_result == 'wrong_secret': + raise ValidationError(_("The reCaptcha private key is invalid.")) + elif recaptcha_result == 'wrong_token': + raise ValidationError(_("The reCaptcha token is invalid.")) + elif recaptcha_result == 'timeout': + raise UserError(_("Your request has timed out, please retry.")) + elif recaptcha_result == 'bad_request': + raise UserError(_("The request is invalid or malformed.")) + else: + return False + + @api.model + def _verify_recaptcha_token(self, ip_addr, token, action=False): + """ + Verify a recaptchaV3 token and returns the result as a string. + RecaptchaV3 verify DOC: https://developers.google.com/recaptcha/docs/verify + + :return: The result of the call to the google API: + is_human: The token is valid and the user trustworthy. + is_bot: The user is not trustworthy and most likely a bot. + no_secret: No reCaptcha secret set in settings. + wrong_action: the action performed to obtain the token does not match the one we are verifying. + wrong_token: The token provided is invalid or empty. + wrong_secret: The private key provided in settings is invalid. + timeout: The request has timout or the token provided is too old. + bad_request: The request is invalid or malformed. + :rtype: str + """ + private_key = request.env['ir.config_parameter'].sudo().get_param('recaptcha_private_key') + if not private_key: + return 'no_secret' + min_score = request.env['ir.config_parameter'].sudo().get_param('recaptcha_min_score') + try: + r = requests.post('https://www.recaptcha.net/recaptcha/api/siteverify', { + 'secret': private_key, + 'response': token, + 'remoteip': ip_addr, + }, timeout=2) # it takes ~50ms to retrieve the response + result = r.json() + res_success = result['success'] + res_action = res_success and action and result['action'] + except requests.exceptions.Timeout: + logger.error("Trial captcha verification timeout for ip address %s", ip_addr) + return 'timeout' + except Exception: + logger.error("Trial captcha verification bad request response") + return 'bad_request' + + if res_success: + score = result.get('score', False) + if score < float(min_score): + logger.warning("Trial captcha verification for ip address %s failed with score %f.", ip_addr, score) + return 'is_bot' + if res_action and res_action != action: + logger.warning("Trial captcha verification for ip address %s failed with action %f, expected: %s.", ip_addr, score, action) + return 'wrong_action' + logger.info("Trial captcha verification for ip address %s succeeded with score %f.", ip_addr, score) + return 'is_human' + errors = result.get('error-codes', []) + logger.warning("Trial captcha verification for ip address %s failed error codes %r. token was: [%s]", ip_addr, errors, token) + for error in errors: + if error in ['missing-input-secret', 'invalid-input-secret']: + return 'wrong_secret' + if error in ['missing-input-response', 'invalid-input-response']: + return 'wrong_token' + if error == 'timeout-or-duplicate': + return 'timeout' + if error == 'bad-request': + return 'bad_request' + return 'is_bot' diff --git a/addons/google_recaptcha/models/res_config_settings.py b/addons/google_recaptcha/models/res_config_settings.py new file mode 100644 index 00000000..2d366ec5 --- /dev/null +++ b/addons/google_recaptcha/models/res_config_settings.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import requests + +from odoo import _, api, fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + recaptcha_public_key = fields.Char("Site Key", config_parameter='recaptcha_public_key', groups='base.group_system') + recaptcha_private_key = fields.Char("Secret Key", config_parameter='recaptcha_private_key', groups='base.group_system') + recaptcha_min_score = fields.Float("Minimum score", config_parameter='recaptcha_min_score', groups='base.group_system', default="0.5", help="Should be between 0.0 and 1.0") diff --git a/addons/google_recaptcha/static/src/js/recaptcha.js b/addons/google_recaptcha/static/src/js/recaptcha.js new file mode 100644 index 00000000..b4ae76fd --- /dev/null +++ b/addons/google_recaptcha/static/src/js/recaptcha.js @@ -0,0 +1,60 @@ +odoo.define('google_recaptcha.ReCaptchaV3', function (require) { +"use strict"; + +const ajax = require('web.ajax'); +const Class = require('web.Class'); +const core = require('web.core'); + +const _t = core._t; + +const ReCaptcha = Class.extend({ + /** + * @override + */ + init: function () { + this._publicKey = odoo.reCaptchaPublicKey; + }, + /** + * Loads the recaptcha libraries. + * + * @returns {Promise|boolean} promise if libs are loading else false if the reCaptcha key is empty. + */ + loadLibs: function () { + if (this._publicKey) { + this._recaptchaReady = ajax.loadJS(`https://www.recaptcha.net/recaptcha/api.js?render=${this._publicKey}`) + .then(() => new Promise(resolve => window.grecaptcha.ready(() => resolve()))); + return this._recaptchaReady.then(() => !!document.querySelector('.grecaptcha-badge')); + } + return false; + }, + /** + * Returns an object with the token if reCaptcha call succeeds + * If no key is set an object with a message is returned + * If an error occured an object with the error message is returned + * + * @param {string} action + * @returns {Promise|Object} + */ + getToken: async function (action) { + if (!this._publicKey) { + return { + message: _t("No recaptcha site key set."), + }; + } + await this._recaptchaReady; + try { + return { + token: await window.grecaptcha.execute(this._publicKey, {action: action}) + }; + } catch (e) { + return { + error: _t("The recaptcha site key is invalid."), + }; + } + }, +}); + +return { + ReCaptcha: ReCaptcha, +}; +}); diff --git a/addons/google_recaptcha/static/src/scss/recaptcha.scss b/addons/google_recaptcha/static/src/scss/recaptcha.scss new file mode 100644 index 00000000..1603d474 --- /dev/null +++ b/addons/google_recaptcha/static/src/scss/recaptcha.scss @@ -0,0 +1,5 @@ +// Hide google recaptcha V3 don't forget to add legal +// https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge.-what-is-allowed +.grecaptcha-badge { + visibility: hidden; +} diff --git a/addons/google_recaptcha/static/src/xml/recaptcha.xml b/addons/google_recaptcha/static/src/xml/recaptcha.xml new file mode 100644 index 00000000..4b7c23b4 --- /dev/null +++ b/addons/google_recaptcha/static/src/xml/recaptcha.xml @@ -0,0 +1,14 @@ + + + + + + Protected by reCAPTCHA, + Privacy Policy + & + Terms of Service + apply. + + + + diff --git a/addons/google_recaptcha/views/assets.xml b/addons/google_recaptcha/views/assets.xml new file mode 100644 index 00000000..d657d0e5 --- /dev/null +++ b/addons/google_recaptcha/views/assets.xml @@ -0,0 +1,17 @@ + + + +