3rd-Party Addons
							parent
							
								
									121fadb715
								
							
						
					
					
						commit
						ffdabbbd5a
					
				|  | @ -0,0 +1,80 @@ | ||||||
|  | .. 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 | ||||||
|  | 
 | ||||||
|  | ==================== | ||||||
|  | Auth Admin - Passkey | ||||||
|  | ==================== | ||||||
|  | 
 | ||||||
|  | This module extends the functionality of users module to support loging in with the administrator password | ||||||
|  | in other user accounts. | ||||||
|  | 
 | ||||||
|  | * Administrator has now the possibility to login in with any login; | ||||||
|  | * By default, Odoo will send a mail to user and admin to indicate them; | ||||||
|  | * If a user and the admin have the same password, admin will be informed; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Configuration | ||||||
|  | ============= | ||||||
|  | 
 | ||||||
|  | To enable notifications for login attempts, you need to: | ||||||
|  | 
 | ||||||
|  | Go to Settings > General Settings. | ||||||
|  | 
 | ||||||
|  | Enable the "Send email to admin user" and / or "Send email to user" checkbox | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | To login into a different user account type in the user name of the account and the password of the administrator at the login screen | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | .. 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/10.0 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Known issues / Roadmap | ||||||
|  | ====================== | ||||||
|  | 
 | ||||||
|  | None | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues | ||||||
|  | <https://github.com/OCA/server-tools/issues>`_. In case of trouble, please | ||||||
|  | check there if your issue has already been reported. If you spotted it first, | ||||||
|  | help us smash it by providing detailed and welcomed feedback. | ||||||
|  | 
 | ||||||
|  | Credits | ||||||
|  | ======= | ||||||
|  | 
 | ||||||
|  | Images | ||||||
|  | ------ | ||||||
|  | 
 | ||||||
|  | * Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_. | ||||||
|  | 
 | ||||||
|  | Contributors | ||||||
|  | ------------ | ||||||
|  | 
 | ||||||
|  | * Eugen Don <eugen.don@don-systems.de> | ||||||
|  | * Alexandre Papin (https://twitter.com/Fenkiou) | ||||||
|  | * Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 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. | ||||||
|  | @ -0,0 +1,6 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | @ -0,0 +1,29 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | { | ||||||
|  |     'name': 'Authentification - Admin Passkey', | ||||||
|  |     'version': '10.0.1.0.0', | ||||||
|  |     'category': 'base', | ||||||
|  |     'author': "GRAP,Odoo Community Association (OCA)", | ||||||
|  |     'website': 'http://www.grap.coop', | ||||||
|  |     'license': 'AGPL-3', | ||||||
|  |     'depends': [ | ||||||
|  |         'mail', | ||||||
|  |     ], | ||||||
|  |     'data': [ | ||||||
|  |         'data/ir_config_parameter.xml', | ||||||
|  |         'views/res_config_view.xml', | ||||||
|  |     ], | ||||||
|  |     'demo': [], | ||||||
|  |     'js': [], | ||||||
|  |     'css': [], | ||||||
|  |     'qweb': [], | ||||||
|  |     'images': [], | ||||||
|  |     'post_load': '', | ||||||
|  |     'application': False, | ||||||
|  |     'installable': True, | ||||||
|  |     'auto_install': False, | ||||||
|  | } | ||||||
|  | @ -0,0 +1,16 @@ | ||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <odoo> | ||||||
|  |     <data noupdate="1"> | ||||||
|  | 
 | ||||||
|  |         <record id="send_to_admin" model="ir.config_parameter"> | ||||||
|  |             <field name="key">auth_admin_passkey.send_to_admin</field> | ||||||
|  |             <field name="value">True</field> | ||||||
|  |         </record> | ||||||
|  | 
 | ||||||
|  |         <record id="send_to_user" model="ir.config_parameter"> | ||||||
|  |             <field name="key">auth_admin_passkey.send_to_user</field> | ||||||
|  |             <field name="value">True</field> | ||||||
|  |         </record> | ||||||
|  | 
 | ||||||
|  |     </data> | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-01-11 15:36+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" | ||||||
|  | "Language-Team: Arabic (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "المستخدمون" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,79 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | #	* auth_admin_passkey | ||||||
|  | # | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-15 19:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-15 19:43+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: \n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: \n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | "" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "When the administrator use his password to login in with a different account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "When the administrator use his password to login in with a different account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-17 07:51+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Catalan (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuaris" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-18 02:08+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Danish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:66 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Brugere" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,103 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | "<pre>Benutzer mit Anmeldename '%s' hat das gleiche Passwort wie Sie.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | "Admin-Benutzer hat seinen PassKey verwendet, um sich als '%s' anzumelden.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technische Information folgt : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login-Datum: %s\n" | ||||||
|  | "\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "PassKey" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "Verwendeter PassKey" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Sende Email an Admin-Benutzer." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Sende Email an Benutzer" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Benutzer" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | "Wenn der Administrator sein Passwort verwendet, um sich mit anderem Konto " | ||||||
|  | "anzumelden, sendet das System dem Kontoinhaber eine Email." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | "Wenn der Administrator sein Passwort verwendet, um sich als anderer Benutzer" | ||||||
|  | " anzumelden, wird Oddoeine entsprechende Email an den Admin-Nutzer senden." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "[Warnung] Odoo Sicherheitsrisiko" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Χρήστες" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,100 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | "<pre>El usuario con identificador '%s' tiene la misma contraseña que " | ||||||
|  | "usted.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | "El usuario administrador ha usado su contraseña para acceder a '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Datos técnicos a continuación : \n" | ||||||
|  | "\n" | ||||||
|  | "- Fecha de acceso : %s\n" | ||||||
|  | "\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Enviar email al usuario administrador." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Enviar email al usuario." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuarios" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuarios" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-04-14 07:01+0000\n" | ||||||
|  | "PO-Revision-Date: 2016-04-04 11:03+0000\n" | ||||||
|  | "Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>\n" | ||||||
|  | "Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/model/res_users.py:88 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/model/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/model/res_users.py:61 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Käyttäjät" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/model/res_users.py:86 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,104 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | "<pre>L'utilisateur dont l'identifiant est '%s' a le même mot de passe que " | ||||||
|  | "vous.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | "L'administrateur a utilisé son mot de passe \"bris de glace\" pour s'identifier avec l'identifiant '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Informations techniques ci-dessous : \n" | ||||||
|  | "\n" | ||||||
|  | "- Date d'authentification : %s\n" | ||||||
|  | "\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "Mot de passe \"bris de glace\"" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "Mot de passe \"bris de glace\" utilisé" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Envoyer un email à l'administrateur." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Envoyer un email à l'utilisateur." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilisateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | "Quand l'administrateur utilise son mot de passe pour s'authentifier avec un " | ||||||
|  | "compte différent, Odoo lui enverra un mail." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | "Quand l'administrateur utilise son mot de passe pour s'authentifier avec un " | ||||||
|  | "compte différent, Odoo enverra un mail à l'utilisateur." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "[WARNING] Faille de sécurité sur Odoo" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-11-30 14:52+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilisateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,90 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Aurel <theaurel60@gmail.com>, 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: Aurel <theaurel60@gmail.com>, 2017\n" | ||||||
|  | "Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_FR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilsateurs" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Korisnici" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-01-11 15:38+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" | ||||||
|  | "Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Korisnici" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,90 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Invia email all'utente amministratore." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Invia email all'utente." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utenti" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Dutch (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Gebruikers" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,90 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Peter Hageman <hageman.p@gmail.com>, 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: Peter Hageman <hageman.p@gmail.com>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Gebruikers" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,90 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Pedro Castro Silva <pedrocs@sossia.pt>, 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: Pedro Castro Silva <pedrocs@sossia.pt>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pt\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilizadores" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,94 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "<pre>Usuário com login '%s' tem a mesma senha que você.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "Passkey" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "Passkey usada" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Enviar email para usuário administrador" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Enviar email para usuário." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Usuários" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | "Quando o administrador usa sua senha para dar login com uma conta diferente," | ||||||
|  | " OPENERP irá enviar um email para a conta do usuário." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | "Quando o administrador usa sua senha para dar login com uma conta diferente," | ||||||
|  | " OPENERP irá enviar um email para a conta do administrador." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "[AVISO] Odoo Risco de Segurança" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,90 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Daniel Schweiger <danielcccasle@gmail.com>, 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: Daniel Schweiger <danielcccasle@gmail.com>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Utilizatori" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,102 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "<pre>Uporabnik '%s' ima enako geslo kot vi.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | "Administrator je uporabil svoj prijavni ključ za prijavo z '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Tehnični podatki : \n" | ||||||
|  | "\n" | ||||||
|  | "- Datum prijave : %s\n" | ||||||
|  | "\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "Prijavni ključ" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "Uporabljen prijavni ključ" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Pošlji e-pošto administratorju." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Pošlji e-pošto uporabniku." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Uporabniki" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | "Ko administrator uporabi svoje geslo za prijavo v drug račun, bo Odoo poslal" | ||||||
|  | " e-pošto uporabniku računa." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | "Ko administrator uporabi svoje geslo za prijavo v drug račun, bo Odoo poslal" | ||||||
|  | " e-pošto administratorju." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "[OPOZORILO] Odoo varnostno tveganje" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,102 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:64 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "<pre> '%s' kullanıcısının şifresi sizinkiyle aynı.</pre>" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:39 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | "Yönetici şifresini kullanarak '%s'. kullanıcısıyla giriş yaptı.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Teknik detaylar aşağıda : \n" | ||||||
|  | "\n" | ||||||
|  | "- Giriş zamanı : %s\n" | ||||||
|  | "\n" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.ui.view,arch_db:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "Parola" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:38 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "Kullanılan parola" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "Yöneticiye e-posta gönder." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,field_description:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "Kullanıcıya e-posta gönder." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Kullanıcılar" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_user | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | "Yönetici farklı bir hesaba şifresiyle giriş yaparsa. Odoo hesap sahibine " | ||||||
|  | "e-posta gönderecek." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model.fields,help:auth_admin_passkey.field_base_config_settings_auth_admin_passkey_send_to_admin | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | "Yönetici şifresiyle farklı bir kullanıcının hesabına giriş yaparsa, Odoo " | ||||||
|  | "yöneticiye e-posta gönderir." | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:62 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "[UYARI] Odoo Güvenlik Riski" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_base_config_settings | ||||||
|  | msgid "base.config.settings" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2016-12-31 08:34+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "Kullanıcılar" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,84 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_admin_passkey | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: server-tools (8.0)\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-01-12 03:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2015-09-18 13:53+0000\n" | ||||||
|  | "Last-Translator: <>\n" | ||||||
|  | "Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:69 | ||||||
|  | #, python-format | ||||||
|  | msgid "<pre>User with login '%s' has the same password as you.</pre>" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:44 | ||||||
|  | #, python-format | ||||||
|  | msgid "" | ||||||
|  | "Admin user used his passkey to login with '%s'.\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "\n" | ||||||
|  | "Technicals informations belows : \n" | ||||||
|  | "\n" | ||||||
|  | "- Login date : %s\n" | ||||||
|  | "\n" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: view:base.config.settings:auth_admin_passkey.view_res_config_settings | ||||||
|  | msgid "Passkey" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:41 | ||||||
|  | #, python-format | ||||||
|  | msgid "Passkey used" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "Send email to admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: field:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "Send email to user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: model:ir.model,name:auth_admin_passkey.model_res_users | ||||||
|  | msgid "Users" | ||||||
|  | msgstr "用户" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_user:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the account user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: help:base.config.settings,auth_admin_passkey_send_to_admin:0 | ||||||
|  | msgid "" | ||||||
|  | "When the administrator use his password to login in with a different " | ||||||
|  | "account, Odoo will send an email to the admin user." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_admin_passkey | ||||||
|  | #: code:addons/auth_admin_passkey/models/res_users.py:67 | ||||||
|  | #, python-format | ||||||
|  | msgid "[WARNING] Odoo Security Risk" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from . import ( | ||||||
|  |     res_config, | ||||||
|  |     res_users, | ||||||
|  |     ) | ||||||
|  | @ -0,0 +1,58 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from odoo import api, fields, models | ||||||
|  | from odoo.tools import safe_eval | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class BaseConfigSettings(models.TransientModel): | ||||||
|  |     _inherit = 'base.config.settings' | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def get_default_auth_admin_passkey_send_to_admin(self, fields): | ||||||
|  |         icp = self.env['ir.config_parameter'] | ||||||
|  |         return { | ||||||
|  |             'auth_admin_passkey_send_to_admin': safe_eval(icp.get_param( | ||||||
|  |                 'auth_admin_passkey.send_to_admin', 'True')), | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def get_default_auth_admin_passkey_send_to_user(self, fields): | ||||||
|  |         icp = self.env['ir.config_parameter'] | ||||||
|  |         return { | ||||||
|  |             'auth_admin_passkey_send_to_user': safe_eval(icp.get_param( | ||||||
|  |                 'auth_admin_passkey.send_to_user', 'True')), | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |     auth_admin_passkey_send_to_admin = fields.Boolean( | ||||||
|  |         'Send email to admin user.', | ||||||
|  |         help=('When the administrator use his password to login in ' | ||||||
|  |               'with a different account, Odoo will send an email ' | ||||||
|  |               'to the admin user.'), | ||||||
|  |     ) | ||||||
|  |     auth_admin_passkey_send_to_user = fields.Boolean( | ||||||
|  |         string='Send email to user.', | ||||||
|  |         help=('When the administrator use his password to login in ' | ||||||
|  |               'with a different account, Odoo will send an email ' | ||||||
|  |               'to the account user.'), | ||||||
|  |     ) | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def set_auth_admin_passkey_send_to_admin(self): | ||||||
|  |         self.ensure_one() | ||||||
|  | 
 | ||||||
|  |         icp = self.env['ir.config_parameter'] | ||||||
|  |         icp.set_param( | ||||||
|  |             'auth_admin_passkey.send_to_admin', | ||||||
|  |             repr(self.auth_admin_passkey_send_to_admin)) | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def set_auth_admin_passkey_send_to_user(self): | ||||||
|  |         self.ensure_one() | ||||||
|  | 
 | ||||||
|  |         icp = self.env['ir.config_parameter'] | ||||||
|  |         icp.set_param( | ||||||
|  |             'auth_admin_passkey.send_to_user', | ||||||
|  |             repr(self.auth_admin_passkey_send_to_user)) | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | import datetime | ||||||
|  | 
 | ||||||
|  | from odoo import SUPERUSER_ID, _, api, exceptions, models | ||||||
|  | from odoo.tools.safe_eval import safe_eval | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ResUsers(models.Model): | ||||||
|  |     _inherit = "res.users" | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def _send_email_passkey(self, user_id): | ||||||
|  |         """ Send a email to the admin of the system and / or the user | ||||||
|  |             to inform passkey use.""" | ||||||
|  |         mail_obj = self.env['mail.mail'].sudo() | ||||||
|  |         icp_obj = self.env['ir.config_parameter'] | ||||||
|  | 
 | ||||||
|  |         admin_user = self.browse(SUPERUSER_ID) | ||||||
|  |         login_user = self.browse(user_id) | ||||||
|  | 
 | ||||||
|  |         send_to_admin = safe_eval( | ||||||
|  |             icp_obj.get_param('auth_admin_passkey.send_to_admin') | ||||||
|  |         ) | ||||||
|  |         send_to_user = safe_eval( | ||||||
|  |             icp_obj.get_param('auth_admin_passkey.send_to_user') | ||||||
|  |         ) | ||||||
|  | 
 | ||||||
|  |         mails = [] | ||||||
|  |         if send_to_admin and admin_user.email: | ||||||
|  |             mails.append({'email': admin_user.email, 'lang': admin_user.lang}) | ||||||
|  |         if send_to_user and login_user.email: | ||||||
|  |             mails.append({'email': login_user.email, 'lang': login_user.lang}) | ||||||
|  |         for mail in mails: | ||||||
|  |             subject = _('Passkey used') | ||||||
|  |             body = _( | ||||||
|  |                 "Admin user used his passkey to login with '%s'.\n\n" | ||||||
|  |                 "\n\nTechnicals informations belows : \n\n" | ||||||
|  |                 "- Login date : %s\n\n" | ||||||
|  |             ) % (login_user.login, | ||||||
|  |                  datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) | ||||||
|  | 
 | ||||||
|  |             mail_obj.create({ | ||||||
|  |                 'email_to': mail['email'], | ||||||
|  |                 'subject': subject, | ||||||
|  |                 'body_html': '<pre>%s</pre>' % body | ||||||
|  |             }) | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def _send_email_same_password(self, login): | ||||||
|  |         """ Send an email to the admin user to inform that | ||||||
|  |             another user has the same password as him.""" | ||||||
|  |         mail_obj = self.env['mail.mail'].sudo() | ||||||
|  |         admin_user = self.sudo().browse(SUPERUSER_ID) | ||||||
|  | 
 | ||||||
|  |         if admin_user.email: | ||||||
|  |             mail_obj.create({ | ||||||
|  |                 'email_to': admin_user.email, | ||||||
|  |                 'subject': _('[WARNING] Odoo Security Risk'), | ||||||
|  |                 'body_html': | ||||||
|  |                     _("<pre>User with login '%s' has the same " | ||||||
|  |                       "password as you.</pre>") % (login), | ||||||
|  |             }) | ||||||
|  | 
 | ||||||
|  |     @api.model | ||||||
|  |     def check_credentials(self, password): | ||||||
|  |         """ Despite using @api.model decorator, this method | ||||||
|  |             is always called by a res.users record""" | ||||||
|  |         try: | ||||||
|  |             super(ResUsers, self).check_credentials(password) | ||||||
|  | 
 | ||||||
|  |             # If credentials are ok, try to log with user password as admin | ||||||
|  |             # user and send email if they are equal | ||||||
|  |             if self._uid != SUPERUSER_ID: | ||||||
|  |                 try: | ||||||
|  |                     super(ResUsers, self).sudo().check_credentials(password) | ||||||
|  |                     self._send_email_same_password(self.login) | ||||||
|  |                 except exceptions.AccessDenied: | ||||||
|  |                     pass | ||||||
|  | 
 | ||||||
|  |         except exceptions.AccessDenied: | ||||||
|  |             if self._uid == SUPERUSER_ID: | ||||||
|  |                 raise | ||||||
|  | 
 | ||||||
|  |             # Just be sure that parent methods aren't wrong | ||||||
|  |             user = self.sudo().search([('id', '=', self._uid)]) | ||||||
|  |             if not user: | ||||||
|  |                 raise | ||||||
|  | 
 | ||||||
|  |             # Our user isn't using its own password, check if its admin one | ||||||
|  |             try: | ||||||
|  |                 super(ResUsers, self).sudo().check_credentials(password) | ||||||
|  |                 self._send_email_passkey(self._uid) | ||||||
|  |             except exceptions.AccessDenied: | ||||||
|  |                 raise | ||||||
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 4.0 KiB | 
|  | @ -0,0 +1,7 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from . import test_auth_admin_passkey | ||||||
|  | from . import test_ui | ||||||
|  | @ -0,0 +1,61 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from odoo import SUPERUSER_ID, exceptions | ||||||
|  | from odoo.tests import common | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | @common.post_install(True) | ||||||
|  | class TestAuthAdminPasskey(common.TransactionCase): | ||||||
|  |     """Tests for 'Auth Admin Passkey' Module""" | ||||||
|  | 
 | ||||||
|  |     def setUp(self): | ||||||
|  |         super(TestAuthAdminPasskey, self).setUp() | ||||||
|  | 
 | ||||||
|  |         self.ru_obj = self.env['res.users'] | ||||||
|  | 
 | ||||||
|  |         self.db = self.env.cr.dbname | ||||||
|  | 
 | ||||||
|  |         self.admin_user = self.ru_obj.search([('id', '=', SUPERUSER_ID)]) | ||||||
|  |         self.passkey_user = self.ru_obj.create({ | ||||||
|  |             'login': 'passkey', | ||||||
|  |             'password': 'PasskeyPa$$w0rd', | ||||||
|  |             'name': 'passkey' | ||||||
|  |         }) | ||||||
|  | 
 | ||||||
|  |     def test_01_normal_login_admin_succeed(self): | ||||||
|  |         # NOTE: Can fail if admin password changed | ||||||
|  |         self.admin_user.check_credentials('admin') | ||||||
|  | 
 | ||||||
|  |     def test_02_normal_login_admin_fail(self): | ||||||
|  |         with self.assertRaises(exceptions.AccessDenied): | ||||||
|  |             self.admin_user.check_credentials('bad_password') | ||||||
|  | 
 | ||||||
|  |     def test_03_normal_login_passkey_succeed(self): | ||||||
|  |         """ This test cannot pass because in some way the the _uid of | ||||||
|  |             passkey_user is equal to admin one so when entering the | ||||||
|  |             original check_credentials() method, it raises an exception | ||||||
|  |             """ | ||||||
|  |         try: | ||||||
|  |             self.passkey_user.check_credentials('passkey') | ||||||
|  |         except exceptions.AccessDenied: | ||||||
|  |             # This exception is raised from the origin check_credentials() | ||||||
|  |             # method and its an expected behaviour as we catch this in our | ||||||
|  |             # check_credentials() | ||||||
|  |             pass | ||||||
|  | 
 | ||||||
|  |     def test_04_normal_login_passkey_fail(self): | ||||||
|  |         with self.assertRaises(exceptions.AccessDenied): | ||||||
|  |             self.passkey_user.check_credentials('bad_password') | ||||||
|  | 
 | ||||||
|  |     def test_05_passkey_login_passkey_with_admin_password_succeed(self): | ||||||
|  |         # NOTE: Can fail if admin password changed | ||||||
|  |         self.passkey_user.check_credentials('admin') | ||||||
|  | 
 | ||||||
|  |     def test_06_passkey_login_passkey_succeed(self): | ||||||
|  |         """[Bug #1319391] | ||||||
|  |         Test the correct behaviour of login with 'bad_login' / 'admin'""" | ||||||
|  |         res = self.ru_obj.authenticate(self.db, 'bad_login', 'admin', {}) | ||||||
|  |         self.assertFalse(res) | ||||||
|  | @ -0,0 +1,171 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright (C) 2013-2014 GRAP (http://www.grap.coop) | ||||||
|  | # @author Sylvain LE GAL (https://twitter.com/legalsylvain) | ||||||
|  | # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||||||
|  | 
 | ||||||
|  | from lxml import html | ||||||
|  | 
 | ||||||
|  | from werkzeug.test import Client | ||||||
|  | from werkzeug.wrappers import BaseResponse | ||||||
|  | 
 | ||||||
|  | from odoo.tests import common | ||||||
|  | from odoo.service import wsgi_server | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | @common.post_install(True) | ||||||
|  | class TestUI(common.HttpCase): | ||||||
|  | 
 | ||||||
|  |     def setUp(self): | ||||||
|  |         super(TestUI, self).setUp() | ||||||
|  | 
 | ||||||
|  |         with self.registry.cursor() as test_cursor: | ||||||
|  |             env = self.env(test_cursor) | ||||||
|  | 
 | ||||||
|  |             self.admin_password = 'AdminPa$$w0rd' | ||||||
|  |             env.ref('base.user_root').password = self.admin_password | ||||||
|  |             self.passkey_password = 'PasskeyPa$$w0rd' | ||||||
|  |             self.passkey_user = env['res.users'].create({ | ||||||
|  |                 'name': 'passkey', | ||||||
|  |                 'login': 'passkey', | ||||||
|  |                 'email': 'passkey', | ||||||
|  |                 'password': self.passkey_password | ||||||
|  |             }) | ||||||
|  |             self.dbname = env.cr.dbname | ||||||
|  | 
 | ||||||
|  |         self.werkzeug_environ = {'REMOTE_ADDR': '127.0.0.1'} | ||||||
|  |         self.test_client = Client(wsgi_server.application, BaseResponse) | ||||||
|  |         self.test_client.get('/web/session/logout') | ||||||
|  | 
 | ||||||
|  |     def html_doc(self, response): | ||||||
|  |         """Get an HTML LXML document.""" | ||||||
|  |         return html.fromstring(response.data) | ||||||
|  | 
 | ||||||
|  |     def csrf_token(self, response): | ||||||
|  |         """Get a valid CSRF token.""" | ||||||
|  |         doc = self.html_doc(response) | ||||||
|  |         return doc.xpath("//input[@name='csrf_token']")[0].get('value') | ||||||
|  | 
 | ||||||
|  |     def get_request(self, url, data=None): | ||||||
|  |         return self.test_client.get( | ||||||
|  |             url, query_string=data, follow_redirects=True) | ||||||
|  | 
 | ||||||
|  |     def post_request(self, url, data=None): | ||||||
|  |         return self.test_client.post( | ||||||
|  |             url, data=data, follow_redirects=True, | ||||||
|  |             environ_base=self.werkzeug_environ) | ||||||
|  | 
 | ||||||
|  |     def test_01_normal_login_admin_succeed(self): | ||||||
|  |         # Our admin user wants to go to backoffice part of Odoo | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enters his credentials and submit the form | ||||||
|  |         data = { | ||||||
|  |             'login': 'admin', | ||||||
|  |             'password': self.admin_password, | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to backoffice | ||||||
|  |         self.assertNotIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |     def test_02_normal_login_admin_fail(self): | ||||||
|  |         # Our admin user wants to go to backoffice part of Odoo | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that he's redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enter his credentials and submit the form | ||||||
|  |         data = { | ||||||
|  |             'login': 'admin', | ||||||
|  |             'password': 'password', | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He mistyped his password so he's redirected to login page again | ||||||
|  |         self.assertIn('Wrong login/password', response.data) | ||||||
|  | 
 | ||||||
|  |     def test_03_normal_login_passkey_succeed(self): | ||||||
|  |         # Our passkey user wants to go to backoffice part of Odoo | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that he's redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enter his credentials and submit the form | ||||||
|  |         data = { | ||||||
|  |             'login': self.passkey_user.login, | ||||||
|  |             'password': self.passkey_password, | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to backoffice | ||||||
|  |         self.assertNotIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |     def test_04_normal_login_passkey_fail(self): | ||||||
|  |         # Our passkey user wants to go to backoffice part of Odoo | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that he's redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enter his credentials and submit the form | ||||||
|  |         data = { | ||||||
|  |             'login': self.passkey_user.login, | ||||||
|  |             'password': 'password', | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He mistyped his password so he's redirected to login page again | ||||||
|  |         self.assertIn('Wrong login/password', response.data) | ||||||
|  | 
 | ||||||
|  |     def test_05_passkey_login_with_admin_password_succeed(self): | ||||||
|  |         # Our admin user wants to login as passkey user | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enters its password with passkey user's login | ||||||
|  |         data = { | ||||||
|  |             'login': self.passkey_user.login, | ||||||
|  |             'password': self.admin_password, | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to backoffice | ||||||
|  |         self.assertNotIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |     def test_06_passkey_login_with_same_password_as_admin(self): | ||||||
|  |         self.passkey_user.password = self.admin_password | ||||||
|  | 
 | ||||||
|  |         # Our passkey user wants to go to backoffice part of Odoo | ||||||
|  |         response = self.get_request('/web/', data={'db': self.dbname}) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to login page as not authenticated | ||||||
|  |         self.assertIn('oe_login_form', response.data) | ||||||
|  | 
 | ||||||
|  |         # He needs to enters his credentials and submit the form | ||||||
|  |         data = { | ||||||
|  |             'login': self.passkey_user.login, | ||||||
|  |             'password': self.admin_password, | ||||||
|  |             'csrf_token': self.csrf_token(response), | ||||||
|  |             'db': self.dbname | ||||||
|  |         } | ||||||
|  |         response = self.post_request('/web/login/', data=data) | ||||||
|  | 
 | ||||||
|  |         # He notices that his redirected to backoffice | ||||||
|  |         self.assertNotIn('oe_login_form', response.data) | ||||||
|  | @ -0,0 +1,27 @@ | ||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <odoo> | ||||||
|  | 
 | ||||||
|  |         <record id="view_res_config_settings" model="ir.ui.view"> | ||||||
|  |             <field name="name">base.config.settings.view</field> | ||||||
|  |             <field name="model">base.config.settings</field> | ||||||
|  |             <field name="inherit_id" ref="base_setup.view_general_configuration"/> | ||||||
|  |             <field name="arch" type="xml"> | ||||||
|  |                 <xpath expr="//label[@name='email_label']/.." position='after'> | ||||||
|  |                     <group> | ||||||
|  |                         <label for="id" string="Passkey"/> | ||||||
|  |                         <div> | ||||||
|  |                         <div> | ||||||
|  |                             <field name="auth_admin_passkey_send_to_admin" class="oe_inline"/> | ||||||
|  |                             <label for="auth_admin_passkey_send_to_admin"/> | ||||||
|  |                         </div> | ||||||
|  |                         <div> | ||||||
|  |                             <field name="auth_admin_passkey_send_to_user" class="oe_inline"/> | ||||||
|  |                             <label for="auth_admin_passkey_send_to_user"/> | ||||||
|  |                         </div> | ||||||
|  |                         </div> | ||||||
|  |                     </group> | ||||||
|  |                 </xpath> | ||||||
|  |             </field> | ||||||
|  |         </record> | ||||||
|  | 
 | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,111 @@ | ||||||
|  | .. 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 | ||||||
|  | ============= | ||||||
|  | 
 | ||||||
|  | Once installed, you can change the ir.config_parameter value for the key | ||||||
|  | 'auth_brute_force.max_attempt_qty' (10 by default) that define the max number | ||||||
|  | of attempts allowed before the user was banned. | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | Admin user have the possibility to unblock a banned IP. | ||||||
|  | 
 | ||||||
|  | Logging | ||||||
|  | ------- | ||||||
|  | 
 | ||||||
|  | This module generates some WARNING logs, in the three following cases: | ||||||
|  | 
 | ||||||
|  | * Authentication failed from remote '127.0.0.1'. Login tried : 'admin'. | ||||||
|  |   Attempt 1 / 10. | ||||||
|  | 
 | ||||||
|  | * Authentication failed from remote '127.0.0.1'. The remote has been banned. | ||||||
|  |   Login tried : 'admin'. | ||||||
|  | 
 | ||||||
|  | * Authentication tried from remote '127.0.0.1'. The request has been ignored | ||||||
|  |   because the remote has been banned after 10 attempts without success. Login | ||||||
|  |   tried : 'admin'. | ||||||
|  | 
 | ||||||
|  | Screenshot | ||||||
|  | ---------- | ||||||
|  | 
 | ||||||
|  | **List of Attempts** | ||||||
|  | 
 | ||||||
|  | .. image:: /auth_brute_force/static/description/screenshot_attempts_list.png | ||||||
|  | 
 | ||||||
|  | **Detail of a banned IP** | ||||||
|  | 
 | ||||||
|  | .. image:: /auth_brute_force/static/description/screenshot_custom_ban.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/10.0 | ||||||
|  | 
 | ||||||
|  | For further information, please visit: | ||||||
|  | 
 | ||||||
|  | * https://www.odoo.com/forum/help-1 | ||||||
|  | 
 | ||||||
|  | Known issues / Roadmap | ||||||
|  | ====================== | ||||||
|  | 
 | ||||||
|  | * The ID used to identify a remote request is the IP provided in the request | ||||||
|  |   (key 'REMOTE_ADDR'). | ||||||
|  | * 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 without redirection, | ||||||
|  |   all the request will be have the value '127.0.0.1' for the REMOTE_ADDR key; | ||||||
|  | * If some users are behind the same Internet Service Provider, if a user is | ||||||
|  |   banned, all the other users will be banned too; | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues | ||||||
|  | <https://github.com/OCA/server-tools/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 <david.vidal@tecnativa.com> | ||||||
|  | 
 | ||||||
|  | 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. | ||||||
|  | @ -0,0 +1,4 @@ | ||||||
|  | # -*- encoding: utf-8 -*- | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | from . import controllers | ||||||
|  | @ -0,0 +1,27 @@ | ||||||
|  | # -*- 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 Attack', | ||||||
|  |     'version': '10.0.1.0.0', | ||||||
|  |     'category': 'Tools', | ||||||
|  |     'summary': "Tracks Authentication Attempts and Prevents Brute-force" | ||||||
|  |                " Attacks module", | ||||||
|  |     'author': "GRAP, " | ||||||
|  |               "Tecnativa, " | ||||||
|  |               "Odoo Community Association (OCA)", | ||||||
|  |     'website': 'http://www.grap.coop', | ||||||
|  |     'license': 'AGPL-3', | ||||||
|  |     'depends': [ | ||||||
|  |         'web', | ||||||
|  |         ], | ||||||
|  |     'data': [ | ||||||
|  |         'security/ir_model_access.yml', | ||||||
|  |         'data/ir_config_parameter.xml', | ||||||
|  |         'views/view.xml', | ||||||
|  |         'views/action.xml', | ||||||
|  |         'views/menu.xml', | ||||||
|  |     ], | ||||||
|  |     'installable': True, | ||||||
|  | } | ||||||
|  | @ -0,0 +1,3 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | 
 | ||||||
|  | from . import main | ||||||
|  | @ -0,0 +1,76 @@ | ||||||
|  | # -*- 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). | ||||||
|  | 
 | ||||||
|  | import logging | ||||||
|  | 
 | ||||||
|  | from odoo import fields, http, registry, SUPERUSER_ID | ||||||
|  | from odoo.api import Environment | ||||||
|  | from odoo.http import request | ||||||
|  | from odoo.addons.web.controllers.main import Home, ensure_db | ||||||
|  | 
 | ||||||
|  | _logger = logging.getLogger(__name__) | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class LoginController(Home): | ||||||
|  | 
 | ||||||
|  |     @http.route() | ||||||
|  |     def web_login(self, redirect=None, **kw): | ||||||
|  |         if request.httprequest.method == 'POST': | ||||||
|  |             ensure_db() | ||||||
|  |             remote = request.httprequest.remote_addr | ||||||
|  |             # Get registry and cursor | ||||||
|  |             with registry(request.session.db).cursor() as cursor: | ||||||
|  |                 env = Environment(cursor, SUPERUSER_ID, {}) | ||||||
|  |                 config_obj = env['ir.config_parameter'] | ||||||
|  |                 attempt_obj = env['res.authentication.attempt'] | ||||||
|  |                 banned_remote_obj = env['res.banned.remote'] | ||||||
|  |                 # Get Settings | ||||||
|  |                 max_attempts_qty = int(config_obj.get_param( | ||||||
|  |                     'auth_brute_force.max_attempt_qty')) | ||||||
|  |                 # Test if remote user is banned | ||||||
|  |                 banned = banned_remote_obj.search([('remote', '=', remote)]) | ||||||
|  |                 if banned: | ||||||
|  |                     request.params['password'] = '' | ||||||
|  |                     _logger.warning( | ||||||
|  |                         "Authentication tried from remote '%s'. The request " | ||||||
|  |                         "has been ignored because the remote has been banned " | ||||||
|  |                         "after %d attempts without success. Login tried : '%s'" | ||||||
|  |                         "." % (remote, max_attempts_qty, | ||||||
|  |                                request.params['login'])) | ||||||
|  |                 else: | ||||||
|  |                     # Try to authenticate | ||||||
|  |                     result = request.session.authenticate( | ||||||
|  |                         request.session.db, request.params['login'], | ||||||
|  |                         request.params['password']) | ||||||
|  |                 # Log attempt | ||||||
|  |                 attempt_obj.create({ | ||||||
|  |                     'attempt_date': fields.Datetime.now(), | ||||||
|  |                     'login': request.params['login'], | ||||||
|  |                     'remote': remote, | ||||||
|  |                     'result': banned and 'banned' or ( | ||||||
|  |                         result and 'successfull' or 'failed'), | ||||||
|  |                 }) | ||||||
|  |                 cursor.commit() | ||||||
|  |                 if not banned and not result: | ||||||
|  |                     # Get last bad attempts quantity | ||||||
|  |                     attempts_qty = len(attempt_obj.search_last_failed(remote)) | ||||||
|  |                     if max_attempts_qty <= attempts_qty: | ||||||
|  |                         # We ban the remote | ||||||
|  |                         _logger.warning( | ||||||
|  |                             "Authentication failed from remote '%s'. " | ||||||
|  |                             "The remote has been banned. Login tried : '%s'" | ||||||
|  |                             "." % (remote, request.params['login'])) | ||||||
|  |                         banned_remote_obj.sudo().create({ | ||||||
|  |                             'remote': remote, | ||||||
|  |                             'ban_date': fields.Datetime.now(), | ||||||
|  |                         }) | ||||||
|  |                         cursor.commit() | ||||||
|  |                     else: | ||||||
|  |                         _logger.warning( | ||||||
|  |                             "Authentication failed from remote '%s'." | ||||||
|  |                             " Login tried : '%s'. Attempt %d / %d." % ( | ||||||
|  |                                 remote, request.params['login'], attempts_qty, | ||||||
|  |                                 max_attempts_qty)) | ||||||
|  |         return super(LoginController, self).web_login(redirect=redirect, **kw) | ||||||
|  | @ -0,0 +1,15 @@ | ||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <!-- Copyright 2015 GRAP -Sylvain LE GAL | ||||||
|  |      License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). --> | ||||||
|  | <odoo noupdate="1"> | ||||||
|  | 
 | ||||||
|  |     <data> | ||||||
|  | 
 | ||||||
|  |         <record id="max_attempt_qty" model="ir.config_parameter"> | ||||||
|  |             <field name="key">auth_brute_force.max_attempt_qty</field> | ||||||
|  |             <field name="value">10</field> | ||||||
|  |         </record> | ||||||
|  | 
 | ||||||
|  |     </data> | ||||||
|  | 
 | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "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 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_brute_force | ||||||
|  | #: model:ir.model,name:auth_brute_force.model_res_banned_remote | ||||||
|  | msgid "res.banned.remote" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,163 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Bole <bole@dajmi5.com>, 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: Bole <bole@dajmi5.com>, 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "Ultimo aggiornamento da" | ||||||
|  | 
 | ||||||
|  | #. 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 "Ultimo aggiornamento il" | ||||||
|  | 
 | ||||||
|  | #. 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 "Ruiscito" | ||||||
|  | 
 | ||||||
|  | #. 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 "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 "" | ||||||
|  | 
 | ||||||
|  | #. module: auth_brute_force | ||||||
|  | #: model:ir.model,name:auth_brute_force.model_res_banned_remote | ||||||
|  | msgid "res.banned.remote" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Peter Hageman <hageman.p@gmail.com>, 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: Peter Hageman <hageman.p@gmail.com>, 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pt\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: 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" | ||||||
|  | 
 | ||||||
|  | #. 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 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,163 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Daniel Schweiger <danielcccasle@gmail.com>, 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: Daniel Schweiger <danielcccasle@gmail.com>, 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 "" | ||||||
|  | 
 | ||||||
|  | #. 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
|  | @ -0,0 +1,162 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * auth_brute_force | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "" | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue