diff --git a/auth_brute_force/README.rst b/auth_brute_force/README.rst new file mode 100644 index 000000000..8c92334ae --- /dev/null +++ b/auth_brute_force/README.rst @@ -0,0 +1,118 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============================================================== +Tracks Authentication Attempts and Prevents Brute-force Attacks +=============================================================== + +This module registers each request done by users trying to authenticate into +Odoo. If the authentication fails, a counter is increased for the given remote +IP. After a defined number of attempts, Odoo will ban the remote IP and +ignore new requests. +This module applies security through obscurity +(https://en.wikipedia.org/wiki/Security_through_obscurity), +When a user is banned, the request is now considered as an attack. So, the UI +will **not** indicate to the user that his IP is banned and the regular message +'Wrong login/password' is displayed. + +This module realizes a call to a web API (http://ip-api.com) to try to have +extra information about remote IP. + +Configuration +============= + +You can use these configuration parameters that control this addon behavior: + +* ``auth_brute_force.whitelist_remotes`` is a comma-separated list of + whitelisted IPs. Failures from these remotes are ignored. + +* ``auth_brute_force.max_by_ip`` defaults to 50, and indicates the maximum + successive failures allowed for an IP. After hitting the limit, the IP gets + banned. + +* ``auth_brute_force.max_by_ip_user`` defaults to 10, and indicates the + maximum successive failures allowed for any IP and user combination. + After hitting the limit, that user and IP combination is banned. + +Usage +===== + +Admin user have the possibility to unblock a banned IP. + +Logging +------- + +This module generates some WARNING logs, in the following cases: + +* When the IP limit is reached: *Authentication failed from remote 'x.x.x.x'. + The remote has been banned. Login tried: xxxx.* + +* When the IP+user combination limit is reached: + *Authentication failed from remote 'x.x.x.x'. + The remote and login combination has been banned. Login tried: xxxx.* + +Screenshot +---------- + +**List of Attempts** + +.. image:: /auth_brute_force/static/description/screenshot_attempts_list.png + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/149/9.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Known issues / Roadmap +====================== + +* Remove 🐒 patch for https://github.com/odoo/odoo/issues/24183 in v12. + +* Depending of server and / or user network configuration, the idenfication + of the user can be wrong, and mainly in the following cases: + + * If the Odoo server is behind an Apache / NGinx proxy and it is not properly + configured, all requests will use the same IP address. Blocking such IP + could render Odoo unusable for all users! **Make sure your logs output the + correct IP for werkzeug traffic before installing this addon.** + +* The IP metadata retrieval should use a better system. `See details here + `_. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Sylvain LE GAL (https://twitter.com/legalsylvain) +* David Vidal +* Jairo Llopis + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/auth_brute_force/__init__.py b/auth_brute_force/__init__.py new file mode 100644 index 000000000..cde864bae --- /dev/null +++ b/auth_brute_force/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/auth_brute_force/__openerp__.py b/auth_brute_force/__openerp__.py new file mode 100644 index 000000000..ac1a0cea7 --- /dev/null +++ b/auth_brute_force/__openerp__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 GRAP - Sylvain LE GAL +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + 'name': 'Authentification - Brute-Force Filter', + 'version': '9.0.1.0.0', + 'category': 'Tools', + 'summary': "Track Authentication Attempts and Prevent Brute-force Attacks", + 'author': "GRAP, " + "Tecnativa, " + "Odoo Community Association (OCA)", + 'website': 'https://github.com/OCA/server-tools', + 'license': 'AGPL-3', + 'depends': [ + # If we don't depend on it, it would inhibit this addon + "auth_crypt", + ], + 'data': [ + 'security/ir_model_access.yml', + 'views/view.xml', + 'views/action.xml', + 'views/menu.xml', + ], + 'installable': True, +} diff --git a/auth_brute_force/i18n/am.po b/auth_brute_force/i18n/am.po new file mode 100644 index 000000000..a7e120ef6 --- /dev/null +++ b/auth_brute_force/i18n/am.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/ar.po b/auth_brute_force/i18n/ar.po new file mode 100644 index 000000000..039a61947 --- /dev/null +++ b/auth_brute_force/i18n/ar.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "الوصف" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "المعرف" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/bg.po b/auth_brute_force/i18n/bg.po new file mode 100644 index 000000000..c0268e160 --- /dev/null +++ b/auth_brute_force/i18n/bg.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Активен" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Описание" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/bs.po b/auth_brute_force/i18n/bs.po new file mode 100644 index 000000000..fb29cb4c3 --- /dev/null +++ b/auth_brute_force/i18n/bs.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/ca.po b/auth_brute_force/i18n/ca.po new file mode 100644 index 000000000..6568211a8 --- /dev/null +++ b/auth_brute_force/i18n/ca.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Actiu" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripció" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Fracassat" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/cs.po b/auth_brute_force/i18n/cs.po new file mode 100644 index 000000000..ff836e2d5 --- /dev/null +++ b/auth_brute_force/i18n/cs.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Popis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/da.po b/auth_brute_force/i18n/da.po new file mode 100644 index 000000000..223188918 --- /dev/null +++ b/auth_brute_force/i18n/da.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktiv" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Beskrivelse" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "Id" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/de.po b/auth_brute_force/i18n/de.po new file mode 100644 index 000000000..922f58431 --- /dev/null +++ b/auth_brute_force/i18n/de.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktiv" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Versuchsdatum" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Anläufe" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Authentifizierungsversuche" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Ergebnis der Authentifizierung" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Sperrdatum" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Gesperrt" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Gesperrte Remotes" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Beschreibung" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Gescheitert" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "Ferne ID" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Erfolgreich" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Erfolgreich" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Versuchte Anmeldung" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Diese Box abwählen, um Fernnutzer zu entsperren" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Erfolglos" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/el_GR.po b/auth_brute_force/i18n/el_GR.po new file mode 100644 index 000000000..37dba0aea --- /dev/null +++ b/auth_brute_force/i18n/el_GR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Περιγραφή" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "Κωδικός" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/en_GB.po b/auth_brute_force/i18n/en_GB.po new file mode 100644 index 000000000..63a0898df --- /dev/null +++ b/auth_brute_force/i18n/en_GB.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Created on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Description" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es.po b/auth_brute_force/i18n/es.po new file mode 100644 index 000000000..0dfd57312 --- /dev/null +++ b/auth_brute_force/i18n/es.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-02 18:39+0000\n" +"PO-Revision-Date: 2018-03-02 18:39+0000\n" +"Last-Translator: enjolras , 2018\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Activo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Fecha de intento" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Intentos" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Intentos de autenticación" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Resultado de la autenticación" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Fecha de bloqueo" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Bloqueado" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Remotos bloqueados" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Fallido" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "ID remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Existoso" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Existoso" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Desmarque esta casilla para desbloquear el remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Sin éxito" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "res.authentication.attempt" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "res.banned.remote" diff --git a/auth_brute_force/i18n/es_AR.po b/auth_brute_force/i18n/es_AR.po new file mode 100644 index 000000000..5a043c250 --- /dev/null +++ b/auth_brute_force/i18n/es_AR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_CL.po b/auth_brute_force/i18n/es_CL.po new file mode 100644 index 000000000..c79a0732b --- /dev/null +++ b/auth_brute_force/i18n/es_CL.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_CO.po b/auth_brute_force/i18n/es_CO.po new file mode 100644 index 000000000..3b3601eb0 --- /dev/null +++ b/auth_brute_force/i18n/es_CO.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_CR.po b/auth_brute_force/i18n/es_CR.po new file mode 100644 index 000000000..53dc51e4c --- /dev/null +++ b/auth_brute_force/i18n/es_CR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_DO.po b/auth_brute_force/i18n/es_DO.po new file mode 100644 index 000000000..f7b7dca6d --- /dev/null +++ b/auth_brute_force/i18n/es_DO.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_EC.po b/auth_brute_force/i18n/es_EC.po new file mode 100644 index 000000000..322d7c598 --- /dev/null +++ b/auth_brute_force/i18n/es_EC.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_ES.po b/auth_brute_force/i18n/es_ES.po new file mode 100644 index 000000000..8e96c13f7 --- /dev/null +++ b/auth_brute_force/i18n/es_ES.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_MX.po b/auth_brute_force/i18n/es_MX.po new file mode 100644 index 000000000..be5210c5d --- /dev/null +++ b/auth_brute_force/i18n/es_MX.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_PE.po b/auth_brute_force/i18n/es_PE.po new file mode 100644 index 000000000..ccc84dee1 --- /dev/null +++ b/auth_brute_force/i18n/es_PE.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_PY.po b/auth_brute_force/i18n/es_PY.po new file mode 100644 index 000000000..5f2f29190 --- /dev/null +++ b/auth_brute_force/i18n/es_PY.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/es_VE.po b/auth_brute_force/i18n/es_VE.po new file mode 100644 index 000000000..563535ead --- /dev/null +++ b/auth_brute_force/i18n/es_VE.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descripción" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/et.po b/auth_brute_force/i18n/et.po new file mode 100644 index 000000000..40c5ebd8d --- /dev/null +++ b/auth_brute_force/i18n/et.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Kirjeldus" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/eu.po b/auth_brute_force/i18n/eu.po new file mode 100644 index 000000000..10aa5533b --- /dev/null +++ b/auth_brute_force/i18n/eu.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Created on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Deskribapena" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/fa.po b/auth_brute_force/i18n/fa.po new file mode 100644 index 000000000..b5d4e8f3d --- /dev/null +++ b/auth_brute_force/i18n/fa.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "توصیف" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "شناسه" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/fi.po b/auth_brute_force/i18n/fi.po new file mode 100644 index 000000000..4c22a5b92 --- /dev/null +++ b/auth_brute_force/i18n/fi.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktiivinen" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Kuvaus" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Epäonnistunut" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/fr.po b/auth_brute_force/i18n/fr.po new file mode 100644 index 000000000..9b8d8fb9e --- /dev/null +++ b/auth_brute_force/i18n/fr.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +# Nicolas JEUDY , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Nicolas JEUDY , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Active" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Date de la tentative" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Tentatives" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Tentative d'authentification" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Résultat de l'authentification" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Ban Date" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Banni" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Clients distants bannis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Description" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Echoué" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "ID du client Distant" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Réussie" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Réussie" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Idenfiant essayé" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Décochez cette case afin d'annuler l'exclusion du client distant" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Sans succès" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "res.authentication.attempt" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "res.authentication.attempt" diff --git a/auth_brute_force/i18n/fr_CA.po b/auth_brute_force/i18n/fr_CA.po new file mode 100644 index 000000000..11cd0959c --- /dev/null +++ b/auth_brute_force/i18n/fr_CA.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Description" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "Identifiant" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/fr_CH.po b/auth_brute_force/i18n/fr_CH.po new file mode 100644 index 000000000..d0487e9b4 --- /dev/null +++ b/auth_brute_force/i18n/fr_CH.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Actif" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/gl.po b/auth_brute_force/i18n/gl.po new file mode 100644 index 000000000..eb998fac1 --- /dev/null +++ b/auth_brute_force/i18n/gl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descrición" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/gl_ES.po b/auth_brute_force/i18n/gl_ES.po new file mode 100644 index 000000000..8080c44e5 --- /dev/null +++ b/auth_brute_force/i18n/gl_ES.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/he.po b/auth_brute_force/i18n/he.po new file mode 100644 index 000000000..b748172ea --- /dev/null +++ b/auth_brute_force/i18n/he.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "תיאור" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "מזהה" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/hr.po b/auth_brute_force/i18n/hr.po new file mode 100644 index 000000000..a98fd9fcf --- /dev/null +++ b/auth_brute_force/i18n/hr.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# Bole , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-02 18:39+0000\n" +"PO-Revision-Date: 2018-03-02 18:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktivno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Datum pokušaja" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Pokušaji" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Pokušaji prijave" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Rezultat prijave" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Datum zabrane" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Zabranjeni" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Zabranjeni poslužiteljji" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Neuspjelo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "ID udaljenog" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Uspješno" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Uspješno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Pokušaj prijave" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Odznačite ovdje za skidanje zabrane udaljenom poslužitelju" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Neuspješno" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "res.authentication.attempt" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "res.banned.remote" diff --git a/auth_brute_force/i18n/hr_HR.po b/auth_brute_force/i18n/hr_HR.po new file mode 100644 index 000000000..60841ce2b --- /dev/null +++ b/auth_brute_force/i18n/hr_HR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktivan" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/hu.po b/auth_brute_force/i18n/hu.po new file mode 100644 index 000000000..439960436 --- /dev/null +++ b/auth_brute_force/i18n/hu.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Leírás" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/id.po b/auth_brute_force/i18n/id.po new file mode 100644 index 000000000..f79b531d5 --- /dev/null +++ b/auth_brute_force/i18n/id.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Keterangan" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/it.po b/auth_brute_force/i18n/it.po new file mode 100644 index 000000000..6c397c7dd --- /dev/null +++ b/auth_brute_force/i18n/it.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-06 02:24+0000\n" +"PO-Revision-Date: 2018-01-06 02:24+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Attivo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Data Tentativo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Tentativi" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Tentativi di Autenticazione" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Risultato dell'Autenticazione" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Data dell'Interdizione" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Interdetto" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descrizione" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Fallita" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "ID Remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Riuscito" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Riuscito" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Tentata Autenticazione" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Senza successo" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "res.authentication.attempt" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "res.banned.remote" diff --git a/auth_brute_force/i18n/ja.po b/auth_brute_force/i18n/ja.po new file mode 100644 index 000000000..0e55ae587 --- /dev/null +++ b/auth_brute_force/i18n/ja.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "作成日" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "説明" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/ko.po b/auth_brute_force/i18n/ko.po new file mode 100644 index 000000000..5c9ea8ceb --- /dev/null +++ b/auth_brute_force/i18n/ko.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "작성일" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "설명" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/lt.po b/auth_brute_force/i18n/lt.po new file mode 100644 index 000000000..2f725fb8a --- /dev/null +++ b/auth_brute_force/i18n/lt.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Aprašymas" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/lt_LT.po b/auth_brute_force/i18n/lt_LT.po new file mode 100644 index 000000000..7aca15b08 --- /dev/null +++ b/auth_brute_force/i18n/lt_LT.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/lv.po b/auth_brute_force/i18n/lv.po new file mode 100644 index 000000000..4bb0e03a7 --- /dev/null +++ b/auth_brute_force/i18n/lv.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Apraksts" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/mk.po b/auth_brute_force/i18n/mk.po new file mode 100644 index 000000000..f6588cc42 --- /dev/null +++ b/auth_brute_force/i18n/mk.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Опис" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/mn.po b/auth_brute_force/i18n/mn.po new file mode 100644 index 000000000..941991132 --- /dev/null +++ b/auth_brute_force/i18n/mn.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Тодорхойлолт" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/nb.po b/auth_brute_force/i18n/nb.po new file mode 100644 index 000000000..f8173fec4 --- /dev/null +++ b/auth_brute_force/i18n/nb.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Beskrivelse" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/nb_NO.po b/auth_brute_force/i18n/nb_NO.po new file mode 100644 index 000000000..b290dfd23 --- /dev/null +++ b/auth_brute_force/i18n/nb_NO.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/nl.po b/auth_brute_force/i18n/nl.po new file mode 100644 index 000000000..bdc486c5e --- /dev/null +++ b/auth_brute_force/i18n/nl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Actief" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Omschrijving" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/nl_BE.po b/auth_brute_force/i18n/nl_BE.po new file mode 100644 index 000000000..2ac85c40d --- /dev/null +++ b/auth_brute_force/i18n/nl_BE.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Omschrijving" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/nl_NL.po b/auth_brute_force/i18n/nl_NL.po new file mode 100644 index 000000000..88fe72d26 --- /dev/null +++ b/auth_brute_force/i18n/nl_NL.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Actief" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Omschrijving" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Mislukt" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/pl.po b/auth_brute_force/i18n/pl.po new file mode 100644 index 000000000..a390c4f4f --- /dev/null +++ b/auth_brute_force/i18n/pl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/pt.po b/auth_brute_force/i18n/pt.po new file mode 100644 index 000000000..d1dffecd3 --- /dev/null +++ b/auth_brute_force/i18n/pt.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +# Pedro Castro Silva , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 01:58+0000\n" +"PO-Revision-Date: 2018-01-27 01:58+0000\n" +"Last-Translator: Pedro Castro Silva , 2018\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Ativo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Data da Tentativa" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Tentativas" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Tentativas de Autenticação" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Resultado da Autenticação" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Data de Interdição" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Interditado" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Remotos Interditados" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descrição" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Falhou" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "ID do Remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Sucesso" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Sucesso" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Tentou Login" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Desmarque esta opção para desinterditar o remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Sem sucesso" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "res.authentication.attempt" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "res.banned.remote" diff --git a/auth_brute_force/i18n/pt_BR.po b/auth_brute_force/i18n/pt_BR.po new file mode 100644 index 000000000..47566993d --- /dev/null +++ b/auth_brute_force/i18n/pt_BR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Ativo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Data da tentativa" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Tentativas" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Tentativas de autenticação" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Resultado da autenticação" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Proibido Data" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Proibido" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Remotos proibidos" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descrição" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Falhou" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "Identificação" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "Identificação Remota" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Sucesso" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Sucesso" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Tentativa de Login" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Desmarque esta caixa para desbloquear o remoto" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Sem Sucesso" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/pt_PT.po b/auth_brute_force/i18n/pt_PT.po new file mode 100644 index 000000000..b69b3ea58 --- /dev/null +++ b/auth_brute_force/i18n/pt_PT.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Ativo" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descrição" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/ro.po b/auth_brute_force/i18n/ro.po new file mode 100644 index 000000000..163cf0b48 --- /dev/null +++ b/auth_brute_force/i18n/ro.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +# Daniel Schweiger , 2017 +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:16+0000\n" +"PO-Revision-Date: 2017-12-16 02:16+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Activ" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Descriere" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/ru.po b/auth_brute_force/i18n/ru.po new file mode 100644 index 000000000..416753277 --- /dev/null +++ b/auth_brute_force/i18n/ru.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Создан" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Описание" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/sk.po b/auth_brute_force/i18n/sk.po new file mode 100644 index 000000000..5509ced63 --- /dev/null +++ b/auth_brute_force/i18n/sk.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktívne" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Popis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/sl.po b/auth_brute_force/i18n/sl.po new file mode 100644 index 000000000..2482c11b1 --- /dev/null +++ b/auth_brute_force/i18n/sl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktivno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Datum poskusa" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Poskusi" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Poskusov overjanja" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Rezultati overjanja" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Datum prepovedi" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Prepovedan" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Prepovedani oddaljeni" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Neuspešno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "Oddaljeni ID" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Uspešno" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Uspešno" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Poskusov prijave" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Odstrani označbo za odstranitev prepovedi oddaljenih" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Brez uspeha" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/sr.po b/auth_brute_force/i18n/sr.po new file mode 100644 index 000000000..212b0dfd6 --- /dev/null +++ b/auth_brute_force/i18n/sr.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/sr@latin.po b/auth_brute_force/i18n/sr@latin.po new file mode 100644 index 000000000..9a61e1012 --- /dev/null +++ b/auth_brute_force/i18n/sr@latin.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Opis" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/sv.po b/auth_brute_force/i18n/sv.po new file mode 100644 index 000000000..397e52509 --- /dev/null +++ b/auth_brute_force/i18n/sv.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Beskrivning" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/th.po b/auth_brute_force/i18n/th.po new file mode 100644 index 000000000..7cdca0b68 --- /dev/null +++ b/auth_brute_force/i18n/th.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "รายละเอียด" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "รหัส" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/tr.po b/auth_brute_force/i18n/tr.po new file mode 100644 index 000000000..472e2fc40 --- /dev/null +++ b/auth_brute_force/i18n/tr.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Aktif" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "Deneme Zamanı" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "Denemeler" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "Kimlik doğrulaması girişimleri" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "Doğrulama sonuçları" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "Kara Liste Zamanı" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "Kara Listede" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "Kara Listedeki Bilgisayarlar" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Açıklama" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "Başarısız" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "Uzak ID" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "Başarılı" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "Başarılı" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "Denenen Kullanıcı" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "Bu uzak bilgisayar kara listeden kaldırmak için seçimi kaldır" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "Başarısız" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/tr_TR.po b/auth_brute_force/i18n/tr_TR.po new file mode 100644 index 000000000..11f22d4a9 --- /dev/null +++ b/auth_brute_force/i18n/tr_TR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "Etkin" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Açıklama" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "Kimlik" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/uk.po b/auth_brute_force/i18n/uk.po new file mode 100644 index 000000000..d54022147 --- /dev/null +++ b/auth_brute_force/i18n/uk.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Опис" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/vi.po b/auth_brute_force/i18n/vi.po new file mode 100644 index 000000000..aa1936fcb --- /dev/null +++ b/auth_brute_force/i18n/vi.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Miêu tả" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/vi_VN.po b/auth_brute_force/i18n/vi_VN.po new file mode 100644 index 000000000..e8e68e4b7 --- /dev/null +++ b/auth_brute_force/i18n/vi_VN.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "Mô tả" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/zh_CN.po b/auth_brute_force/i18n/zh_CN.po new file mode 100644 index 000000000..d6517fc10 --- /dev/null +++ b/auth_brute_force/i18n/zh_CN.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "有效" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "创建时间" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "说明" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "ID" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/i18n/zh_TW.po b/auth_brute_force/i18n/zh_TW.po new file mode 100644 index 000000000..a031de414 --- /dev/null +++ b/auth_brute_force/i18n/zh_TW.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_brute_force +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_active +msgid "Active" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_attempt_date +msgid "Attempt Date" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_attempt_ids +msgid "Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_authentication_attempt +#: model:ir.ui.menu,name:auth_brute_force.menu_res_authentication_attempt +msgid "Authentication Attempts" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_result +msgid "Authentication Result" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_ban_date +msgid "Ban Date" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:15 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Banned" +msgstr "" + +#. module: auth_brute_force +#: model:ir.actions.act_window,name:auth_brute_force.action_res_banned_remote +#: model:ir.ui.menu,name:auth_brute_force.menu_res_banned_remote +msgid "Banned Remotes" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_create_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_create_date +msgid "Created on" +msgstr "建立於" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_description +msgid "Description" +msgstr "說明" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_display_name +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:14 +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Failed" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_id +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_id +msgid "ID" +msgstr "編號" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt___last_update +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_uid +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_write_date +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_remote +#: model:ir.model.fields,field_description:auth_brute_force.field_res_banned_remote_remote +msgid "Remote ID" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Successful" +msgstr "" + +#. module: auth_brute_force +#: code:addons/auth_brute_force/models/res_authentication_attempt.py:13 +#: selection:res.authentication.attempt,result:0 +#, python-format +msgid "Successfull" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,field_description:auth_brute_force.field_res_authentication_attempt_login +msgid "Tried Login" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model.fields,help:auth_brute_force.field_res_banned_remote_active +msgid "Uncheck this box to unban the remote" +msgstr "" + +#. module: auth_brute_force +#: model:ir.ui.view,arch_db:auth_brute_force.view_res_authentication_attempt_search +msgid "Without Success" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_authentication_attempt +msgid "res.authentication.attempt" +msgstr "" + +#. module: auth_brute_force +#: model:ir.model,name:auth_brute_force.model_res_banned_remote +msgid "res.banned.remote" +msgstr "" diff --git a/auth_brute_force/models/__init__.py b/auth_brute_force/models/__init__.py new file mode 100644 index 000000000..75bc8dd03 --- /dev/null +++ b/auth_brute_force/models/__init__.py @@ -0,0 +1,4 @@ +# -*- encoding: utf-8 -*- + +from . import res_authentication_attempt +from . import res_users diff --git a/auth_brute_force/models/res_authentication_attempt.py b/auth_brute_force/models/res_authentication_attempt.py new file mode 100644 index 000000000..de19ae66e --- /dev/null +++ b/auth_brute_force/models/res_authentication_attempt.py @@ -0,0 +1,172 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 GRAP - Sylvain LE GAL +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import json +import logging +from urllib2 import urlopen +from openerp import api, fields, models + +GEOLOCALISATION_URL = u"http://ip-api.com/json/{}" + +_logger = logging.getLogger(__name__) + + +class ResAuthenticationAttempt(models.Model): + _name = 'res.authentication.attempt' + _order = 'create_date desc' + + login = fields.Char(string='Tried Login', index=True) + remote = fields.Char(string='Remote IP', index=True) + result = fields.Selection( + string='Authentication Result', + selection=[ + ('successful', 'Successful'), + ('failed', 'Failed'), + ('banned', 'Banned'), + ], + index=True, + ) + remote_metadata = fields.Text( + string="Remote IP metadata", + compute='_compute_metadata', + store=True, + help="Metadata publicly available for remote IP", + ) + whitelisted = fields.Boolean( + compute="_compute_whitelisted", + ) + + @api.multi + @api.depends('remote') + def _compute_metadata(self): + for item in self: + url = GEOLOCALISATION_URL.format(item.remote) + try: + res = json.loads(urlopen(url, timeout=5).read()) + except Exception: + _logger.warning( + "Couldn't fetch details from %s", + url, + exc_info=True, + ) + else: + item.remote_metadata = "\n".join( + '%s: %s' % pair for pair in res.items()) + + @api.multi + def _compute_whitelisted(self): + whitelist = self._whitelist_remotes() + for one in self: + one.whitelisted = one.remote in whitelist + + @api.model + def _hits_limit(self, limit, remote, login=None): + """Know if a given remote hits a given limit. + + :param int limit: + The maximum amount of failures allowed. + + :param str remote: + The remote IP to search for. + + :param str login: + If you want to check the IP+login combination limit, supply the + login. + """ + domain = [ + ("remote", "=", remote), + ] + if login is not None: + domain += [("login", "=", login)] + # Find last successful login + last_ok = self.search( + domain + [("result", "=", "successful")], + order='create_date desc', + limit=1, + ) + if last_ok: + domain += [("create_date", ">", last_ok.create_date)] + # Count failures since last success, if any + recent_failures = self.search_count( + domain + [("result", "!=", "successful")], + ) + # Did we hit the limit? + return recent_failures >= limit + + @api.model + def _trusted(self, remote, login): + """Checks if any the remote or remote+login are trusted. + + :param str remote: + Remote IP from which the login attempt is taking place. + + :param str login: + User login that is being tried. + + :return bool: + ``True`` means it is trusted. ``False`` means that it is banned. + """ + # Cannot ban without remote + if not remote: + return True + get_param = self.env["ir.config_parameter"].sudo().get_param + # Whitelisted remotes always pass + if remote in self._whitelist_remotes(): + return True + # Check if remote is banned + limit = int(get_param("auth_brute_force.max_by_ip", 50)) + if self._hits_limit(limit, remote): + _logger.warning( + "Authentication failed from remote '%s'. " + "The remote has been banned. " + "Login tried: %r.", + remote, + login, + ) + return False + # Check if remote + login combination is banned + limit = int(get_param("auth_brute_force.max_by_ip_user", 10)) + if self._hits_limit(limit, remote, login): + _logger.warning( + "Authentication failed from remote '%s'. " + "The remote and login combination has been banned. " + "Login tried: %r.", + remote, + login, + ) + return False + # If you get here, you are a good boy (for now) + return True + + def _whitelist_remotes(self): + """Get whitelisted remotes. + + :return set: + Remote IPs that are whitelisted currently. + """ + whitelist = self.env["ir.config_parameter"].sudo().get_param( + "auth_brute_force.whitelist_remotes", + "", + ) + return set(whitelist.split(",")) + + @api.multi + def action_whitelist_add(self): + """Add current remotes to whitelist.""" + whitelist = self._whitelist_remotes() + whitelist |= set(self.mapped("remote")) + self.env["ir.config_parameter"].set_param( + "auth_brute_force.whitelist_remotes", + ",".join(whitelist), + ) + + @api.multi + def action_whitelist_remove(self): + """Remove current remotes from whitelist.""" + whitelist = self._whitelist_remotes() + whitelist -= set(self.mapped("remote")) + self.env["ir.config_parameter"].set_param( + "auth_brute_force.whitelist_remotes", + ",".join(whitelist), + ) diff --git a/auth_brute_force/models/res_users.py b/auth_brute_force/models/res_users.py new file mode 100644 index 000000000..870a83146 --- /dev/null +++ b/auth_brute_force/models/res_users.py @@ -0,0 +1,151 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - Jairo Llopis +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging +from contextlib import contextmanager +from threading import current_thread +from openerp import api, models, SUPERUSER_ID +from openerp.exceptions import AccessDenied +from openerp.service import wsgi_server + +_logger = logging.getLogger(__name__) + + +class ResUsers(models.Model): + _inherit = "res.users" + + # HACK https://github.com/odoo/odoo/issues/24183 + # TODO Remove in v12, and use normal odoo.http.request to get details + def _register_hook(self, cr): + """🐒-patch XML-RPC controller to know remote address.""" + original_fn = wsgi_server.application_unproxied + + def _patch(environ, start_response): + current_thread().environ = environ + return original_fn(environ, start_response) + + wsgi_server.application_unproxied = _patch + + # Helpers to track authentication attempts + @classmethod + @contextmanager + def _auth_attempt(cls, login): + """Start an authentication attempt and track its state.""" + try: + # Check if this call is nested + attempt_id = current_thread().auth_attempt_id + except AttributeError: + # Not nested; create a new attempt + attempt_id = cls._auth_attempt_new(login) + if not attempt_id: + # No attempt was created, so there's nothing to do here + yield + return + try: + current_thread().auth_attempt_id = attempt_id + result = "successful" + try: + yield + except AccessDenied as error: + result = getattr(error, "reason", "failed") + raise + finally: + cls._auth_attempt_update({"result": result}) + finally: + try: + del current_thread().auth_attempt_id + except AttributeError: + pass # It was deleted already + + @classmethod + def _auth_attempt_force_raise(cls, login, method): + """Force a method to raise an AccessDenied on falsey return.""" + try: + with cls._auth_attempt(login): + result = method() + if not result: + # Force exception to record auth failure + raise AccessDenied() + except AccessDenied: + pass # `_auth_attempt()` did the hard part already + return result + + @classmethod + def _auth_attempt_new(cls, login): + """Store one authentication attempt, not knowing the result.""" + # Get the right remote address + try: + remote_addr = current_thread().environ["REMOTE_ADDR"] + except (KeyError, AttributeError): + remote_addr = False + # Exit if it doesn't make sense to store this attempt + if not remote_addr: + return False + # Use a separate cursor to keep changes always + with cls.pool.cursor() as cr: + env = api.Environment(cr, SUPERUSER_ID, {}) + attempt = env["res.authentication.attempt"].create({ + "login": login, + "remote": remote_addr, + }) + return attempt.id + + @classmethod + def _auth_attempt_update(cls, values): + """Update a given auth attempt if we still ignore its result.""" + auth_id = getattr(current_thread(), "auth_attempt_id", False) + if not auth_id: + return {} # No running auth attempt; nothing to do + # Use a separate cursor to keep changes always + with cls.pool.cursor() as cr: + env = api.Environment(cr, SUPERUSER_ID, {}) + attempt = env["res.authentication.attempt"].browse(auth_id) + # Update only on 1st call + if not attempt.result: + attempt.write(values) + return attempt.copy_data()[0] if attempt else {} + + # Override all auth-related core methods + def _login(self, db, login, password): + return self._auth_attempt_force_raise( + login, + lambda: super(ResUsers, self)._login(db, login, password), + ) + + def authenticate(self, db, login, password, user_agent_env): + return self._auth_attempt_force_raise( + login, + lambda: super(ResUsers, self).authenticate( + db, login, password, user_agent_env), + ) + + def check(self, db, uid, passwd): + with self._auth_attempt(uid): + return super(ResUsers, self).check(db, uid, passwd) + + @api.model + def check_credentials(self, password): + """This is the most important and specific auth check method. + + When we get here, it means that Odoo already checked the user exists + in this database. + + Other auth methods usually plug here. + """ + login = self.env.user.login + with self._auth_attempt(login): + # Update login, just in case we stored the UID before + attempt = self._auth_attempt_update({"login": login}) + remote = attempt.get("remote") + # Fail if the remote is banned + trusted = self.env["res.authentication.attempt"]._trusted( + remote, + login, + ) + if not trusted: + error = AccessDenied() + error.reason = "banned" + raise error + # Continue with other auth systems + return super(ResUsers, self).check_credentials(password) diff --git a/auth_brute_force/security/ir_model_access.yml b/auth_brute_force/security/ir_model_access.yml new file mode 100644 index 000000000..5dcb53021 --- /dev/null +++ b/auth_brute_force/security/ir_model_access.yml @@ -0,0 +1,14 @@ +# -*- encoding: utf-8 -*- +- !record {model: ir.model.access, id: access_res_authentication_attempt_all}: + model_id: model_res_authentication_attempt + name: Authentication Attempt All Users + perm_read: true + +- !record {model: ir.model.access, id: access_res_authentication_attempt_manager}: + group_id: base.group_system + model_id: model_res_authentication_attempt + name: Authentication Attempt Manager + perm_create: true + perm_read: true + perm_write: true + perm_unlink: true diff --git a/auth_brute_force/static/description/icon.png b/auth_brute_force/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/auth_brute_force/static/description/icon.png differ diff --git a/auth_brute_force/static/description/screenshot_attempts_list.png b/auth_brute_force/static/description/screenshot_attempts_list.png new file mode 100644 index 000000000..7ee6f940f Binary files /dev/null and b/auth_brute_force/static/description/screenshot_attempts_list.png differ diff --git a/auth_brute_force/tests/__init__.py b/auth_brute_force/tests/__init__.py new file mode 100644 index 000000000..5757d0102 --- /dev/null +++ b/auth_brute_force/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_brute_force diff --git a/auth_brute_force/tests/test_brute_force.py b/auth_brute_force/tests/test_brute_force.py new file mode 100644 index 000000000..f63a579d8 --- /dev/null +++ b/auth_brute_force/tests/test_brute_force.py @@ -0,0 +1,396 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - Jairo Llopis +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from threading import current_thread +from urllib import urlencode + +from decorator import decorator +from mock import patch +from werkzeug.utils import redirect + +from openerp import http +from openerp.tests.common import at_install, HttpCase, post_install +from openerp.tools import mute_logger +from openerp.modules.registry import RegistryManager + +from ..models import res_authentication_attempt, res_users + + +GARBAGE_LOGGERS = ( + "werkzeug", + res_authentication_attempt.__name__, + res_users.__name__, +) + + +# HACK https://github.com/odoo/odoo/pull/24833 +def skip_unless_addons_installed(*addons): + """Decorator to skip a test unless some addons are installed. + + :param *str addons: + Addon names that should be installed. + + :param reason: + Explain why you must skip this test. + """ + + @decorator + def _wrapper(method, self, *args, **kwargs): + installed = self.addons_installed(*addons) + if not installed: + missing = set(addons) - installed + self.skipTest("Required addons not installed: %s" % + ",".join(sorted(missing))) + return method(self, *args, **kwargs) + + return _wrapper + + +@at_install(False) +@post_install(True) +# Skip CSRF validation on tests +@patch(http.__name__ + ".WebRequest.validate_csrf", return_value=True) +# Skip specific browser forgery on redirections +@patch(http.__name__ + ".redirect_with_hash", side_effect=redirect) +# Faster tests without calls to geolocation API +@patch(res_authentication_attempt.__name__ + ".urlopen", return_value="") +class BruteForceCase(HttpCase): + def setUp(self): + super(BruteForceCase, self).setUp() + # Some tests could retain environ from last test and produce fake + # results without this patch + # HACK https://github.com/odoo/odoo/issues/24183 + # TODO Remove in v12 + try: + del current_thread().environ + except AttributeError: + pass + # Complex password to avoid conflicts with `password_security` + self.good_password = "Admin$%02584" + self.data_demo = { + "login": "demo", + "password": "Demo%&/(908409**", + } + with self.cursor() as cr: + env = self.env(cr) + env["ir.config_parameter"].set_param( + "auth_brute_force.max_by_ip_user", 3) + env["ir.config_parameter"].set_param( + "auth_brute_force.max_by_ip", 4) + # Clean attempts to be able to count in tests + env["res.authentication.attempt"].search([]).unlink() + # Make sure involved users have good passwords + env.user.password = self.good_password + env["res.users"].search([ + ("login", "=", self.data_demo["login"]), + ]).password = self.data_demo["password"] + + # HACK https://github.com/odoo/odoo/pull/24833 + def addons_installed(self, *addons): + """Know if the specified addons are installed.""" + found = self.env["ir.module.module"].search([ + ("name", "in", addons), + ("state", "not in", ["uninstalled", "uninstallable"]), + ]) + return set(addons) - set(found.mapped("name")) + + @skip_unless_addons_installed("web") + @mute_logger(*GARBAGE_LOGGERS) + def test_web_login_existing(self, *args): + """Remote is banned with real user on web login form.""" + data1 = { + "login": "admin", + "password": "1234", # Wrong + } + # Make sure user is logged out + self.url_open("/web/session/logout", timeout=30) + # Fail 3 times + for n in range(3): + response = self.url_open("/web/login", bytes(urlencode(data1)), 30) + # If you fail, you get /web/login again + self.assertTrue( + response.geturl().endswith("/web/login"), + "Unexpected URL %s" % response.geturl(), + ) + # Admin banned, demo not + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + "demo", + ), + ) + # Now I know the password, but login is rejected too + data1["password"] = self.good_password + response = self.url_open("/web/login", bytes(urlencode(data1)), 30) + self.assertTrue( + response.geturl().endswith("/web/login"), + "Unexpected URL %s" % response.geturl(), + ) + # IP has been banned, demo user cannot login + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + "demo", + ), + ) + # Attempts recorded + with self.cursor() as cr: + env = self.env(cr) + failed = env["res.authentication.attempt"].search([ + ("result", "=", "failed"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(failed), 3) + banned = env["res.authentication.attempt"].search([ + ("result", "=", "banned"), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(banned), 1) + # Unban + banned.action_whitelist_add() + # Try good login, it should work now + response = self.url_open("/web/login", bytes(urlencode(data1)), 30) + self.assertTrue(response.geturl().endswith("/web")) + + @skip_unless_addons_installed("web") + @mute_logger(*GARBAGE_LOGGERS) + def test_web_login_unexisting(self, *args): + """Remote is banned with fake user on web login form.""" + data1 = { + "login": "administrator", # Wrong + "password": self.good_password, + } + # Make sure user is logged out + self.url_open("/web/session/logout", timeout=30) + # Fail 3 times + for n in range(3): + response = self.url_open("/web/login", bytes(urlencode(data1)), 30) + # If you fail, you get /web/login again + self.assertTrue( + response.geturl().endswith("/web/login"), + "Unexpected URL %s" % response.geturl(), + ) + # Admin banned, demo not + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + self.data_demo["login"], + ), + ) + # Demo user can login + response = self.url_open( + "/web/login", + bytes(urlencode(self.data_demo)), + 30, + ) + # If you pass, you get /web + self.assertTrue( + response.geturl().endswith("/web"), + "Unexpected URL %s" % response.geturl(), + ) + self.url_open("/web/session/logout", timeout=30) + # Attempts recorded + with self.cursor() as cr: + env = self.env(cr) + failed = env["res.authentication.attempt"].search([ + ("result", "=", "failed"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(failed), 3) + banned = env["res.authentication.attempt"].search([ + ("result", "=", "banned"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(banned), 0) + + @mute_logger(*GARBAGE_LOGGERS) + def test_xmlrpc_login_existing(self, *args): + """Remote is banned with real user on XML-RPC login.""" + data1 = { + "login": "admin", + "password": "1234", # Wrong + } + # Fail 3 times + for n in range(3): + self.assertFalse(self.xmlrpc_common.authenticate( + self.env.cr.dbname, data1["login"], data1["password"], {})) + # Admin banned, demo not + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + "demo", + ), + ) + # Now I know the password, but login is rejected too + data1["password"] = self.good_password + self.assertFalse(self.xmlrpc_common.authenticate( + self.env.cr.dbname, data1["login"], data1["password"], {})) + # IP has been banned, demo user cannot login + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + "demo", + ), + ) + # Attempts recorded + with self.cursor() as cr: + env = self.env(cr) + failed = env["res.authentication.attempt"].search([ + ("result", "=", "failed"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(failed), 3) + banned = env["res.authentication.attempt"].search([ + ("result", "=", "banned"), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(banned), 1) + # Unban + banned.action_whitelist_add() + # Try good login, it should work now + self.assertTrue(self.xmlrpc_common.authenticate( + self.env.cr.dbname, data1["login"], data1["password"], {})) + + @mute_logger(*GARBAGE_LOGGERS) + def test_xmlrpc_login_unexisting(self, *args): + """Remote is banned with fake user on XML-RPC login.""" + data1 = { + "login": "administrator", # Wrong + "password": self.good_password, + } + # Fail 3 times + for n in range(3): + self.assertFalse(self.xmlrpc_common.authenticate( + self.env.cr.dbname, data1["login"], data1["password"], {})) + # Admin banned, demo not + with self.cursor() as cr: + env = self.env(cr) + self.assertFalse( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + self.data_demo["login"], + ), + ) + # Demo user can login + self.assertTrue(self.xmlrpc_common.authenticate( + self.env.cr.dbname, + self.data_demo["login"], + self.data_demo["password"], + {}, + )) + # Attempts recorded + with self.cursor() as cr: + env = self.env(cr) + failed = env["res.authentication.attempt"].search([ + ("result", "=", "failed"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(failed), 3) + banned = env["res.authentication.attempt"].search([ + ("result", "=", "banned"), + ("login", "=", data1["login"]), + ("remote", "=", "127.0.0.1"), + ]) + self.assertEqual(len(banned), 0) + + @mute_logger(*GARBAGE_LOGGERS) + def test_orm_login_existing(self, *args): + """No bans on ORM login with an existing user.""" + data1 = { + "login": "admin", + "password": "1234", # Wrong + } + with self.cursor() as cr: + env = self.env(cr) + pool = RegistryManager.get(cr.dbname) + # Fail 3 times + for n in range(3): + self.assertFalse( + pool["res.users"].authenticate( + cr.dbname, data1["login"], data1["password"], {})) + self.assertEqual( + env["res.authentication.attempt"].search(count=True, args=[]), + 0, + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + # Now I know the password, and login works + data1["password"] = self.good_password + self.assertTrue( + pool["res.users"].authenticate( + cr.dbname, data1["login"], data1["password"], {})) + + @mute_logger(*GARBAGE_LOGGERS) + def test_orm_login_unexisting(self, *args): + """No bans on ORM login with an unexisting user.""" + data1 = { + "login": "administrator", # Wrong + "password": self.good_password, + } + with self.cursor() as cr: + pool = RegistryManager.get(cr.dbname) + env = self.env(cr) + # Fail 3 times + for n in range(3): + self.assertFalse( + pool["res.users"].authenticate( + cr.dbname, data1["login"], data1["password"], {})) + self.assertEqual( + env["res.authentication.attempt"].search(count=True, args=[]), + 0, + ) + self.assertTrue( + env["res.authentication.attempt"]._trusted( + "127.0.0.1", + data1["login"], + ), + ) + # Now I know the user, and login works + data1["login"] = "admin" + self.assertTrue( + pool["res.users"].authenticate( + cr.dbname, data1["login"], data1["password"], {})) diff --git a/auth_brute_force/views/action.xml b/auth_brute_force/views/action.xml new file mode 100644 index 000000000..de0684c99 --- /dev/null +++ b/auth_brute_force/views/action.xml @@ -0,0 +1,14 @@ + + + + + + Authentication Attempts + res.authentication.attempt + form + tree,graph + {"search_default_filter_no_success":1} + + + diff --git a/auth_brute_force/views/menu.xml b/auth_brute_force/views/menu.xml new file mode 100644 index 000000000..107d69d39 --- /dev/null +++ b/auth_brute_force/views/menu.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/auth_brute_force/views/view.xml b/auth_brute_force/views/view.xml new file mode 100644 index 000000000..0d8da2117 --- /dev/null +++ b/auth_brute_force/views/view.xml @@ -0,0 +1,77 @@ + + + + + + + res.authentication.attempt + + + + + + + + + + + + res.authentication.attempt + +
+
+
+ + + + + + + + + + +
+
+
+ + + res.authentication.attempt + + + + + + + + + + res.authentication.attempt + + + + + + + + + + + +