diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_totp | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/auth_totp')
62 files changed, 15131 insertions, 0 deletions
diff --git a/addons/auth_totp/__init__.py b/addons/auth_totp/__init__.py new file mode 100644 index 00000000..9e5827f9 --- /dev/null +++ b/addons/auth_totp/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +from . import controllers +from . import models diff --git a/addons/auth_totp/__manifest__.py b/addons/auth_totp/__manifest__.py new file mode 100644 index 00000000..eef19d65 --- /dev/null +++ b/addons/auth_totp/__manifest__.py @@ -0,0 +1,26 @@ +{ + 'name': 'Two-Factor Authentication (TOTP)', + 'description': """ +Two-Factor Authentication (TOTP) +================================ +Allows users to configure two-factor authentication on their user account +for extra security, using time-based one-time passwords (TOTP). + +Once enabled, the user will need to enter a 6-digit code as provided +by their authenticator app before being granted access to the system. +All popular authenticator apps are supported. + +Note: logically, two-factor prevents password-based RPC access for users +where it is enabled. In order to be able to execute RPC scripts, the user +can setup API keys to replace their main password. + """, + 'depends': ['web'], + 'category': 'Extra Tools', + 'auto_install': True, + 'data': [ + 'security/security.xml', + 'views/user_preferences.xml', + 'views/templates.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/auth_totp/controllers/__init__.py b/addons/auth_totp/controllers/__init__.py new file mode 100644 index 00000000..3f3f69c6 --- /dev/null +++ b/addons/auth_totp/controllers/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import home diff --git a/addons/auth_totp/controllers/home.py b/addons/auth_totp/controllers/home.py new file mode 100644 index 00000000..10c2461e --- /dev/null +++ b/addons/auth_totp/controllers/home.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +import re + +import odoo.addons.web.controllers.main +from odoo import http, _ +from odoo.exceptions import AccessDenied +from odoo.http import request + + +class Home(odoo.addons.web.controllers.main.Home): + @http.route( + '/web/login/totp', + type='http', auth='public', methods=['GET', 'POST'], sitemap=False, + website=True, # website breaks the login layout... + ) + def web_totp(self, redirect=None, **kwargs): + if request.session.uid: + return http.redirect_with_hash(self._login_redirect(request.session.uid, redirect=redirect)) + + if not request.session.pre_uid: + return http.redirect_with_hash('/web/login') + + error = None + if request.httprequest.method == 'POST': + user = request.env['res.users'].browse(request.session.pre_uid) + try: + with user._assert_can_auth(): + user._totp_check(int(re.sub(r'\s', '', kwargs['totp_token']))) + except AccessDenied: + error = _("Verification failed, please double-check the 6-digit code") + except ValueError: + error = _("Invalid authentication code format.") + else: + request.session.finalize() + return http.redirect_with_hash(self._login_redirect(request.session.uid, redirect=redirect)) + + return request.render('auth_totp.auth_totp_form', { + 'error': error, + 'redirect': redirect, + }) diff --git a/addons/auth_totp/i18n/ar.po b/addons/auth_totp/i18n/ar.po new file mode 100644 index 00000000..473600bd --- /dev/null +++ b/addons/auth_totp/i18n/ar.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "الغاء" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "مسار HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "المُعرف" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "سر" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "رابط ويب" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "المستخدم" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "المستخدمون" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "اعتماد" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/auth_totp.pot b/addons/auth_totp/i18n/auth_totp.pot new file mode 100644 index 00000000..2dad6e19 --- /dev/null +++ b/addons/auth_totp/i18n/auth_totp.pot @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-29 13:45+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_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/bg.po b/addons/auth_totp/i18n/bg.po new file mode 100644 index 00000000..dde24c34 --- /dev/null +++ b/addons/auth_totp/i18n/bg.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# aleksandar ivanov, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Откажи" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL адрес" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Потребител" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Потребители" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/bn.po b/addons/auth_totp/i18n/bn.po new file mode 100644 index 00000000..af71918a --- /dev/null +++ b/addons/auth_totp/i18n/bn.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "বাতিল" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "দ্বারা সৃষ্টি" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "তৈরি" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "এইচটিটিপি রাউটিং" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "আইডি " + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "সর্বশেষ আপডেট করেছেন" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "সর্বশেষ আপডেট হয়েছে" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "ইউআরএল" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "ব্যবহারকারীরা" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/ca.po b/addons/auth_totp/i18n/ca.po new file mode 100644 index 00000000..6cea543b --- /dev/null +++ b/addons/auth_totp/i18n/ca.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Cancel·la" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutament HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Adreça URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Usuari" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Usuaris" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificar" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/ckb.po b/addons/auth_totp/i18n/ckb.po new file mode 100644 index 00000000..76ac12af --- /dev/null +++ b/addons/auth_totp/i18n/ckb.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "پاشگەزبوونەوە" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "دروستکراوە لەلایەن" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "دروستکراوە لە" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ناسنامە" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "دواین تازەکردنەوە لەلایەن" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "دواین تازەکردنەوە لە" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "بەکارهێنەر" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "بەکارهێنەرەکان" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/cs.po b/addons/auth_totp/i18n/cs.po new file mode 100644 index 00000000..f027a139 --- /dev/null +++ b/addons/auth_totp/i18n/cs.po @@ -0,0 +1,307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# trendspotter, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Zakázat dvoufaktorové ověřování)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Otevřete aplikaci dvoufaktorového ověřování ve vašem\n" +" zařízení k získání kódu a ověření vaší identity" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Dvoufaktorové ověřování povoleno" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Dvoufaktorové ověřování není povoleno" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Dvoufaktorové ověřování není povoleno\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Dvoufaktorové ověřování povoleno\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Po naskenování čárového kódu aplikace zobrazí šestimístný kód, který vy\n" +" by měl vstoupit níže. Nebojte se, pokud se kód v aplikaci změní,\n" +" zůstává v platnosti o něco déle." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Ověřovací kód (6 číslic)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Zrušit" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Zakázat TOTP pro uživatele" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Povolit dvoufaktorové ověřování" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Povolit dvoufaktorové ověřování" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Zadejte šestimístný kód z aplikace" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Neplatný formát ověřovacího kódu." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Nebo zadejte tajný kód ručně:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QR kód" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Naskenujte obrázek níže pomocí aplikace ověřovatele v telefonu.<br/>\n" +" Pokud nemůžete čárový kód naskenovat, je zde několik alternativních možností:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Naskenujte tento čárový kód pomocí své aplikace" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Tajný" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Ověřovací kód by měl obsahovat pouze čísla" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "tajemství totp" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Průvodce nastavením dvou faktorů" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Dvoufaktorové ověřování" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Dvoufaktorové ověřování" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Dvoufaktorové ověřování je již povoleno" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Dvoufaktorové ověřování lze povolit pouze pro sebe" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Dvoufaktorové ověřování je pro uživatele deaktivováno %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Dvoufaktorové ověřování je nyní povoleno." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Uživatel" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Ověřovací kód" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Ověření se nezdařilo, zkontrolujte prosím šestimístný kód" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Ověřit" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Co je tohle?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Vaše dvoufaktorové tajemství:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "ukázat kód" diff --git a/addons/auth_totp/i18n/da.po b/addons/auth_totp/i18n/da.po new file mode 100644 index 00000000..417f0e39 --- /dev/null +++ b/addons/auth_totp/i18n/da.po @@ -0,0 +1,309 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Joe Hansen <joedalton2@yahoo.dk>, 2020 +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Deaktiver to-faktor autentificering)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Åben to-faktor autentificerings applikationen på din\n" +" enhed for at indhente en kode til at bekræfte din identitet" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" To-faktor autentificering aktiveret" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" To-faktor autentificering ikke aktiveret" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" To-faktor autentificering ikke aktiveret\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" To-faktor autentificering aktiveret\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Efter scanning af stregkoden, vil applikationen vise en 6-cifret kode som du\n" +" skal angive nedenfor. Bliv ikke bekymret hvis koden ændres i applikationen,\n" +" den forbliver gyldig lidt længere." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Autentificerings Kode (6 cifre)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Annullér" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Deaktiver TOTP på brugere" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Aktiver To-Faktor Autentificering" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Aktiver to-faktor autentificering" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Angiv den 6-cifrede kode fra din applikation" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Ugyldig autentificering kode format." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Eller angiv den hemmelige kode manuelt:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qrkode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Scan billedet nedenfor med autentificerings applikationen på din telefon.<br/>\n" +" Hvis du ikke kan scanne stregkoden, er her nogle alternative muligheder:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Scan denne stregkode med din applikation" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Hemmelighed" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Bekræftelses koden bør kun indeholde tal" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp Hemmelig" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "To-Faktor Opsætning Guide" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "To-faktor Autentificering" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "To-faktor autentificering" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "To-faktor autentificering allerede aktiveret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "To-faktor autentificering kan kun aktiveres for dig selv" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "To-faktor autentificering deaktiveret for bruger(e) %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "To-faktor autentificering er nu aktiveret." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Adresse" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Bruger" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Brugere" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Bekræftelses kode" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Bekræftelse slog fejl, vær venlig at tjekke den 6-cifrede kode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificer" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Hvad er dette?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Din to-faktor hemmelighed:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "vis koden" diff --git a/addons/auth_totp/i18n/de.po b/addons/auth_totp/i18n/de.po new file mode 100644 index 00000000..42a5cc05 --- /dev/null +++ b/addons/auth_totp/i18n/de.po @@ -0,0 +1,301 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Udo Hennig <info@udohennig.de>, 2021 +# Robert Förster <hello@suppliot.eu>, 2021 +# Chris Egal <sodaswed@web.de>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Zwei-Faktor-Authentifizierung deaktivieren)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Zwei-Faktor-Authentifizierung aktiviert" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Zwei-Faktor-Authentifizierung nicht aktiviert" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Zwei-Faktor-Authentifizierung nicht aktiviert\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Zwei-Faktor-Authentifizierung aktiviert\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Abbrechen" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Aktiviere Zwei-Faktor-Authentifizierung" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Aktiviere Zwei-Faktor-Authentifizierung" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Geben Sie den 6-stelligen Code aus Ihrer App ein" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Geheimnis" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Zwei-Faktor-Authentifizierung" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Zwei-Faktor-Authentifizierung" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Zwei-Faktor-Authentifizierung bereits aktiviert" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" +"Die Zwei-Faktor-Authentifizierung kann nur für Sie selbst aktiviert werden" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Zwei-Faktor-Authentifizierung deaktiviert für User(s) %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Zwei-Faktor-Authentifizierung ist jetzt aktiviert" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Benutzer" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Überprüfungscode" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" +"Verifizierung fehlgeschlagen, bitte überprüfen Sie den 6-stelligen Code " +"erneut" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Überprüfen" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Was ist das?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Ihr Zwei-Faktor-Geheimnis:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "den Code anzeigen" diff --git a/addons/auth_totp/i18n/el.po b/addons/auth_totp/i18n/el.po new file mode 100644 index 00000000..5aa7eaef --- /dev/null +++ b/addons/auth_totp/i18n/el.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Κωδικός" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Διεύθυνση (Url)" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Χρήστης" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Χρήστες" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/eo.po b/addons/auth_totp/i18n/eo.po new file mode 100644 index 00000000..00705cb2 --- /dev/null +++ b/addons/auth_totp/i18n/eo.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/es.po b/addons/auth_totp/i18n/es.po new file mode 100644 index 00000000..4b079479 --- /dev/null +++ b/addons/auth_totp/i18n/es.po @@ -0,0 +1,305 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Deshabilitar la autenticación en dos pasos)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Abre la autenticación en dos pasos desde tu aplicación\n" +" móvil para obtener un código y verificar tu identidad " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Autenticación en dos pasos activada " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Autenticación en dos pasos desactivada " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Autenticación en dos pasos desactivada\n" +" </span> " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Autenticación en dos pasos activada \n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Después de escanear el código de barras, la aplicación te mostrará un código de 6 dígitos que\n" +" debes registrar en la parte inferior. No te preocupes si el código cambia en la aplicación,\n" +" es válido por unos segundos más." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Código de autenticación (6 dígitos) " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Cancelar" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Desactivar TOTP para los usuarios" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Activar la autenticación de dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Activar la autenticación en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Introduce el código de 6 dígitos de tu aplicación" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Identificación" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Formato incorrecto del código de autenticación." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "O introduce el tu código secret de forma manual:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Código QR" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Escanea la imagen en la parte inferior con la aplicación móvil de autenticador. <br/>\n" +" Si no puedes escanear el código de barrar, te dejamos opciones alternativas:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Escanea el código de barras con tu aplicación" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "El código de autenticación únicamente debe contener números" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp Secret" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Asistente de configuración de autenticación en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Autenticación en dos pasos" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autenticación en dos pasos" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "La autenticación en dos pasos ya está activa " + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Solo tú puedes activar la autenticación en dos pasos " + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Autenticación en dos pasos desactivada para usuarios %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "La autenticación en dos pasos ha sido activada." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Usuario" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Código de verificación" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "La verificación falló, por favor revisa el código de 6 dígitos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificar" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "¿Qué es esto?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Tu secret en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "Mostrar el código" diff --git a/addons/auth_totp/i18n/es_MX.po b/addons/auth_totp/i18n/es_MX.po new file mode 100644 index 00000000..6134a50b --- /dev/null +++ b/addons/auth_totp/i18n/es_MX.po @@ -0,0 +1,304 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Deshabilitar la autenticación en dos pasos)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Abra la autenticación en dos pasos desde tu aplicación\n" +" móvil para obtener un código y verificar su identidad " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Autenticación en dos pasos activada " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Autenticación en dos pasos desactivada " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Autenticación en dos pasos desactivada\n" +" </span> " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Autenticación en dos pasos activada \n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Después de escanear el código de barras, la aplicación le mostrará un código de 6 dígitos que\n" +" debes registrar en la parte inferior. No se preocupe si el código cambia en la aplicación,\n" +" es válido por unos segundos más." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Código de autenticación (6 dígitos) " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Cancelar" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Desactivar TOTP para los usuarios" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Activar la autenticación de dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Activar la autenticación en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Introduzca el código de 6 dígitos de tu aplicación" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Identificación" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Formato incorrecto del código de autenticación." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "O introduzca el código secreto de forma manual:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Código QR" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Escanee la imagen en la parte inferior con la aplicación móvil de autenticador. <br/>\n" +" Si no puede escanear el código de barras, le dejamos opciones alternativas:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Escanee el código de barras con su aplicación" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "El código de autenticación únicamente debe contener números" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp Secret" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Asistente de configuración de autenticación en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Autenticación en dos pasos" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autenticación en dos pasos" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "La autenticación en dos pasos ya está activa " + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Solo usted puede activar la autenticación en dos pasos " + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Autenticación en dos pasos desactivada para usuarios %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "La autenticación en dos pasos ha sido activada." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Usuario" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Código de verificación" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "La verificación falló, por favor revise el código de 6 dígitos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificar" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "¿Qué es esto?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Su secret en dos pasos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "Mostrar el código" diff --git a/addons/auth_totp/i18n/et.po b/addons/auth_totp/i18n/et.po new file mode 100644 index 00000000..6a371f4e --- /dev/null +++ b/addons/auth_totp/i18n/et.po @@ -0,0 +1,306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Triine Aavik <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Triine Aavik <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Ära luba kahe-etapilist tuvastamist)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Ava Google authentificator app oma\n" +" telefonis, et saada kood." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Kahe-etapiline tuvastamine on lubatud" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Kahe-etapiline tuvastamine ei ole lubatud" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Kahe-etapiline tuvastamine ei ole lubatud\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Kahe-etapiline tuvastamine on lubatud\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Peale triipkoodi skaneerimist kuvatakse äpis teile 6-numbriline kood,\n" +"mille te peaksite alla reale sisestama. Ärge muretsege, kui kood äpis muutub,\n" +"see jääb kehtima veidi kauemaks." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Tuvastamise kood (6 numbrit)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Tühista" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Lülita välja TOTP kasutajatel" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Luba kahe-etapiline tuvastamine" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Luba kahe-etapiline tuvastamine" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Sisestage 6-numbriline kood enda äpist" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Kehtetu autentimiskoodi formaat." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Või sisesta turvakood käsitsi:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QRkood" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Skaneeri allolev pilt enda telefonis oleva tuvastamisäpiga.<br/>\n" +" Kui sa ei saa triipkoodi skaneerida, võid kasutada alternatiivseid võimalusi:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Skaneeri see triipkood enda äpiga" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Kinnituskood peaks sisaldama ainult numbreid" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Kahe-etapiline tuvastamine" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Kahe-etapiline tuvastamine" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Kahe-etapiline tuvastamine on juba lubatud" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Ainult sina saad määrata kahe-etapilise tuvastamise" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Kahe-etapiline tuvastamine on eemaldatud kasutaja(te)l %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Kahe-etapiline tuvastamine on nüüd lubatud" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Kasutaja" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Kasutajad" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Kinnituskood" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Kinnitamine ebaõnnestus, palun kontrollige üle 6-numbriline kood" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Kinnita" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "näita koodi" diff --git a/addons/auth_totp/i18n/eu.po b/addons/auth_totp/i18n/eu.po new file mode 100644 index 00000000..1f8f5f4c --- /dev/null +++ b/addons/auth_totp/i18n/eu.po @@ -0,0 +1,289 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Noiz sortua" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP bideratzea" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Azkenengoz eguneratu zuena" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Azken eguneraketa noiz" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Erabiltzailea" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Erabiltzaileak" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Egiaztatu" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/fa.po b/addons/auth_totp/i18n/fa.po new file mode 100644 index 00000000..9e18b126 --- /dev/null +++ b/addons/auth_totp/i18n/fa.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "لغو" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "ایجاد توسط" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "مسیریابی HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "شناسه" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "آدرس Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "کاربر" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "کاربران" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "تایید کن" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/fi.po b/addons/auth_totp/i18n/fi.po new file mode 100644 index 00000000..0bcb64bd --- /dev/null +++ b/addons/auth_totp/i18n/fi.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Peruuta" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-reititys" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Verkko-osoite" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Käyttäjä" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Käyttäjät" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/fr.po b/addons/auth_totp/i18n/fr.po new file mode 100644 index 00000000..3c2ebd7b --- /dev/null +++ b/addons/auth_totp/i18n/fr.po @@ -0,0 +1,292 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# William Olhasque <william.olhasque@scopea.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Chaplet34 <charleskolie2@gmail.com>, 2020 +# Vallen Delobel <edv@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Vallen Delobel <edv@odoo.com>, 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" +"1\n" +"(Désactivation authentication deux-facteurs)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Annuler" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Activer autentification deux-facteurs" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Routage HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qrcode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autentification deux-facteurs" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Utilisateur" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Code de vérification" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verifier" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/he.po b/addons/auth_totp/i18n/he.po new file mode 100644 index 00000000..b3fd18a1 --- /dev/null +++ b/addons/auth_totp/i18n/he.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "בטל" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "נוצר ע\"י" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "ניתוב HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "מזהה" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה ע\"י" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "כתובת אתר אינטרנט" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "משתמש" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "משתמשים" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "אשר" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/hi.po b/addons/auth_totp/i18n/hi.po new file mode 100644 index 00000000..89882f81 --- /dev/null +++ b/addons/auth_totp/i18n/hi.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "रद्द" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/hr.po b/addons/auth_totp/i18n/hr.po new file mode 100644 index 00000000..8b2588e0 --- /dev/null +++ b/addons/auth_totp/i18n/hr.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Vojislav Opačić <vojislav.opacic@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Vojislav Opačić <vojislav.opacic@gmail.com>, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Odustani" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Korisnik" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/hu.po b/addons/auth_totp/i18n/hu.po new file mode 100644 index 00000000..51f234ed --- /dev/null +++ b/addons/auth_totp/i18n/hu.po @@ -0,0 +1,298 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# krnkris, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Kétlépcsős azonosítás kikapcsolása)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Kétlépcsős azonosítás engedélyzve" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Kétlépcsős azonosítás letiltva" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Kétlépcsős azonosítás letiltva\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Kétlépcsős azonosítás engedélyezve\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Hitelesítő kód (6 számjegy)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Visszavonás" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Kétlépcsős azonosítás engedélyezése" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Kétlépcsős azonosítás engedélyezése" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP irányítás" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Azonosító" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Frissítve " + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Kétlépcsős azonosítás beállítás varázsló" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Kétlépcsős azonosítás" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Kétlépcsős azonosítás" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Kétlépcsős azonosítás már engedélyezve van" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Kétlépcsős azonosítás letiltása ezen felhasználóknak: %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Kétlépcsős azonosítás most engedélyezve van." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Webcím" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Felhasználó" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Ellenőrzés" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/id.po b/addons/auth_totp/i18n/id.po new file mode 100644 index 00000000..e0f38994 --- /dev/null +++ b/addons/auth_totp/i18n/id.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# PAS IRVANUS <ipankbiz@gmail.com>, 2020 +# Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021 +# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Nonaktifkan otentikasi dua faktor)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Batal" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Aktifkan otentikasi dua faktor" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Otentikasi dua faktor" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Pengguna" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Pengguna" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verify" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/it.po b/addons/auth_totp/i18n/it.po new file mode 100644 index 00000000..fe83381b --- /dev/null +++ b/addons/auth_totp/i18n/it.po @@ -0,0 +1,299 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Autenticazione a due fattori abilitata" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Autenticazione a due fattori non abilitata" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Autenticazione a due fattori non abilitata\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Autenticazione a due fattori abilitata\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Codice di autenticazione (6 cifre)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Annulla" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Abilita autenticazione a due fattori" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Abilita autenticazione a due fattori" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Digita il codice a 6 cifre dell'applicazione" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Instradamento HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Formato non valido del codice di autenticazione." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "O digita il codice segreto manualmente:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Codice QR" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Acquisire l'immagine sottostante con l'applicazione di autenticazione del telefono.<br/>\n" +" Se non è possibile acquisire il codice a barre, le opzioni alternative sono:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Scansiona il codice con l'applicazione" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Segreto" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Il codice di verifica deve contenere solo numeri" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Procedura di impostazione due fattori" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Autenticazione a due fattori" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autenticazione a due fattori" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Autenticazione a due fattori già abilitata" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" +"L'autenticazione a due fattori può essere abilitata solo per se stessi" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Autenticazione a due fattori disabilitata per gli utenti %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "L'autenticazione a due fattori è ora abilitata." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Utente" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Codice di verifica" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Verifica non riuscita, ricontrollare il codice a 6 cifre" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "verificare le" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Cos'è?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Due fattori segreto:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "mostra il codice" diff --git a/addons/auth_totp/i18n/ja.po b/addons/auth_totp/i18n/ja.po new file mode 100644 index 00000000..e58e8fdf --- /dev/null +++ b/addons/auth_totp/i18n/ja.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(2要素認証を無効化)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "取消" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "作成日" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "2要素認証を有効化" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTPルーティング" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "2要素認証" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "ユーザ" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "ユーザ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "確認" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/ka.po b/addons/auth_totp/i18n/ka.po new file mode 100644 index 00000000..e9a5276f --- /dev/null +++ b/addons/auth_totp/i18n/ka.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "გაუქმება" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლდა" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "მომხმარებელი" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "მომხმარებლები" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/km.po b/addons/auth_totp/i18n/km.po new file mode 100644 index 00000000..efdbafa8 --- /dev/null +++ b/addons/auth_totp/i18n/km.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "លុបចោល" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP ជុំវិញ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "អាថ៌កំបាំង" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "អ្នកប្រើប្រាស់" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "អ្នកប្រើ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/ko.po b/addons/auth_totp/i18n/ko.po new file mode 100644 index 00000000..32810a77 --- /dev/null +++ b/addons/auth_totp/i18n/ko.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# Link Up링크업 <linkup.way@gmail.com>, 2020 +# Linkup <link-up@naver.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Linkup <link-up@naver.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "취소" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "작성일" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 라우팅" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "비밀" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "사용자" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "사용자" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "인증 코드" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "확인" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/lt.po b/addons/auth_totp/i18n/lt.po new file mode 100644 index 00000000..5d4093d3 --- /dev/null +++ b/addons/auth_totp/i18n/lt.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# Jonas Zinkevicius <jozi@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" +"(Išjungti dviejų veiksnių autentifikavimą ( two-factor authentication))" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Atšaukti" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Įjungti dviejų veiksnių autentifikavimą (two-factor authentication)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP nukreipimas" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Dviejų veiksnių autentifikavimas (two-factor authentication)" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Vartotojas" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Vartotojai" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/lv.po b/addons/auth_totp/i18n/lv.po new file mode 100644 index 00000000..961e17e2 --- /dev/null +++ b/addons/auth_totp/i18n/lv.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Atcelt" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Lietotājs" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Lietotāji" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/mn.po b/addons/auth_totp/i18n/mn.po new file mode 100644 index 00000000..87d8c1e4 --- /dev/null +++ b/addons/auth_totp/i18n/mn.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Цуцлах" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Хэрэглэгч" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Батлах" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/nb.po b/addons/auth_totp/i18n/nb.po new file mode 100644 index 00000000..599938b0 --- /dev/null +++ b/addons/auth_totp/i18n/nb.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Avbryt" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-ruting" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Hemmelighet" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "URL" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Bruker" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Brukere" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/nl.po b/addons/auth_totp/i18n/nl.po new file mode 100644 index 00000000..51eef8e5 --- /dev/null +++ b/addons/auth_totp/i18n/nl.po @@ -0,0 +1,306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Yip132 <yannick.renders@gmail.com>, 2020 +# Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 2021\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Schakel tweefactorauthenticatie uit)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open de tweestapsverificatie app op uw\n" +" toestel om een code te bekomen en uw identiteit te bevestigen" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Tweestapsverificatie ingeschakeld" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Tweestapsverificatie uitgeschakeld" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Tweestapsverificatie niet ingeschakeld\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Tweestapsverificatie ingeschakeld\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Na het scannen van de barcode, zal de app een 6-cijferige code tonen dat u\n" +" hieronder moet ingeven. Maak u geen zorgen als de code wijzigt in de app\n" +" deze blijft een beetje langer geldig." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Verificatiecode (6 cijfers)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Annuleren" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "TOTP uitschakelen voor gebruikers" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Tweestapsverificatie inschakelen" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Schakel tweefactorauthenticatie in" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Voer de 6-cijferige code van uw app in" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Ongeldig formaat verificatiecode" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Of voeg de geheime code handmatig in:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QR-code" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Scan de afbeelding hieronder met de tweestapsverificatie app op uw toestel.<br/>\n" +" Indien u de barcode niet kan scannen, hier zijn enkele andere opties:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Scan deze barcode met uw app" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Geheim" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "De verificatie code mag enkel cijfers bevatten" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp geheim" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Tweestapsverificatie instellen" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Tweestapsverificatie" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Twee-factor-authenticatie" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Tweestapsverificatie reeds ingeschakeld" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Tweestapsverificatie kan enkel voor uzelf ingeschakeld worden" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Tweestapsverifictie uitgeschakeld voor gebruiker(s) %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Tweestapsverificatie is nu ingeschakeld" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Gebruiker" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Verificatie code" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Verificatie mislukt. Controleer de 6-cijferige code nogmaals." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Controleer" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Wat is dit?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Uw tweestaps geheim:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "laat de code zien" diff --git a/addons/auth_totp/i18n/pl.po b/addons/auth_totp/i18n/pl.po new file mode 100644 index 00000000..5e9bd838 --- /dev/null +++ b/addons/auth_totp/i18n/pl.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Andrzej Donczew <a.donczew@hadron.eu.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Anuluj" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Wytyczanie HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Nieprawidłowy format kodu uwierzytelniającego." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Użytkownik" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Użytkownicy" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/pt.po b/addons/auth_totp/i18n/pt.po new file mode 100644 index 00000000..806031ca --- /dev/null +++ b/addons/auth_totp/i18n/pt.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Cancelar" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Rotas HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Utilizador" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificar" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/pt_BR.po b/addons/auth_totp/i18n/pt_BR.po new file mode 100644 index 00000000..9c22e92c --- /dev/null +++ b/addons/auth_totp/i18n/pt_BR.po @@ -0,0 +1,309 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# Yannick Belot <yannickbh@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Desabilitar autenticação de dois fatores)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Abra o aplicativo de autenticação de dois fatores em seu\n" +" dispositivo para obter um código e verificar sua identidade" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Autenticação dois fatores habilitada" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Autenticação dois fatores não habilitada" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Autenticação dois fatores não habilitada\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Autenticação dois fatores habilitada\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Depois de escanear o código de barras, o aplicativo exibirá um código de 6 dígitos que você\n" +" deve entrar abaixo. Não se preocupe se o código mudar no aplicativo,\n" +" ele permanece válido um pouco mais." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Código de Autenticação (6 dígitos)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Cancelar" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Desabilitar TOTP em usuários" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Habilitar Autenticação Dois Fatores" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Habilitar autenticação dois fatores" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Insira o código de 6 dígitos de seu aplicativo" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Roteamento HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Formato de código de autenticação inválido." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Ou insira o código secreto manualmente." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QR Code" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Escaneie a imagem abaixo com o aplicativo autenticador em seu telefone.<br/>\n" +" Se você não pode ler o código de barras, aqui estão algumas opções alternativas:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Escaneie este código de barras com seu app" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "O código de verificação deve conter apenas números" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp Secret" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Assistente de Configuração Dois Fatores" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Autenticação Dois Fatores" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autenticação dois fatores" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Autenticação dois fatores já habilitada" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "A autenticação dois fatores só pode ser habilitada por você mesmo" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Autenticação dois fatores desativada para o usuário(s) %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "A autenticação dois fatores agora está habilitada." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Usuário" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Código de Verificação" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "A verificação falhou, verifique novamente o código de 6 dígitos" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificar" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "O que é isso?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Seu secret dois fatores:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "mostrar o código" diff --git a/addons/auth_totp/i18n/ro.po b/addons/auth_totp/i18n/ro.po new file mode 100644 index 00000000..141004a4 --- /dev/null +++ b/addons/auth_totp/i18n/ro.po @@ -0,0 +1,293 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# sharkutz <sharkutz4life@yahoo.com>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Dezactivați autentificarea cu doi factori)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Autentificarea cu doi factori nu este activată" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Autentificarea cu doi factori nu este activată\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Anulează" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Activați autentificarea cu doi factori" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Rutare HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Autentificare cu doi factori" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Operator" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Cod de verificare" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Verificați" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/ru.po b/addons/auth_totp/i18n/ru.po new file mode 100644 index 00000000..d1451c58 --- /dev/null +++ b/addons/auth_totp/i18n/ru.po @@ -0,0 +1,306 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Сергей Шебанин <sergey@shebanin.ru>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Сергей Шебанин <sergey@shebanin.ru>, 2021\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Отключить двухфакторную аутентификацию)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Запустите приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код и подтвердить вашу личность" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Двухфакторная аутентификация включена" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Двухфакторная аутентификация отключена" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Двухфакторная аутентификация отключена\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Двухфакторная аутентификация включена\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"После сканирования изображения приложение отобразит код из 6 цифр, который вам надо\n" +" ввести ниже. Не переживайте, если код в приложении изменится,\n" +" он остается действующим еще некоторое время." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Код авторизации (6 цифр)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Отменить" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Создал" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Создан" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Отключить TOTP для пользователей" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Включить двухфакторную аутентификацию" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Включить двухфакторную аутентификацию" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Введите код из 6 цифр из вашего приложения" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизация HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "Идентификатор" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Неправильный формат кода." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Или введите секретный код вручную:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QR-код" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Отсканируйте изображение ниже с помощью приложения-аутентификатора на вашем телефоне.<br/>\n" +" Если это не сработает, есть несколько альтернативных вариантов::" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Отсканируйте этот код вашим приложением" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Секрет" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Проверочный код должен состоять только из цифр" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "TOTP секрет" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Мастер настройки двухфакторной аутентификации" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Двухфакторная аутентификация" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Двухфакторная аутентификация" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Двухфакторная аутентификация уже включена" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Двухфакторная аутентификация может быть включена только персонально" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Двухфакторная аутентификация отключена для пользователей %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Теперь двухфакторная аутентификация включена." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Пользователь" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Пользователи" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Проверочный код" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Проверка не удалась, пожалуйста, проверьте еще раз ваш код из 6 цифр" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Проверить" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Что это?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Ваш секрет для двухфакторной аутентификации:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "показать код" diff --git a/addons/auth_totp/i18n/si.po b/addons/auth_totp/i18n/si.po new file mode 100644 index 00000000..a67644a6 --- /dev/null +++ b/addons/auth_totp/i18n/si.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/sk.po b/addons/auth_totp/i18n/sk.po new file mode 100644 index 00000000..ac15e09e --- /dev/null +++ b/addons/auth_totp/i18n/sk.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Zrušené" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP smerovanie" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Užívateľ" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Užívatelia" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Overiť" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/sl.po b/addons/auth_totp/i18n/sl.po new file mode 100644 index 00000000..0ffb7166 --- /dev/null +++ b/addons/auth_totp/i18n/sl.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# Vida Potočnik <vida.potocnik@mentis.si>, 2021 +# laznikd <laznik@mentis.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Prekliči" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmerjanje" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Uporabnik" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Preveri" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/sv.po b/addons/auth_totp/i18n/sv.po new file mode 100644 index 00000000..c39a6095 --- /dev/null +++ b/addons/auth_totp/i18n/sv.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Haojun Zou <apollo_zhj@msn.com>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Avbryt" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-rutt" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Användare" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/th.po b/addons/auth_totp/i18n/th.po new file mode 100644 index 00000000..a28bfaa8 --- /dev/null +++ b/addons/auth_totp/i18n/th.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Somchart Jabsung <jabsung.s@gmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "See http://openerp.com" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "รหัส" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "ที่อยู่ Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "ผู้ใช้งาน" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "ผู้ใช้งาน" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "ตรวจสอบ" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/tr.po b/addons/auth_totp/i18n/tr.po new file mode 100644 index 00000000..eb2f5733 --- /dev/null +++ b/addons/auth_totp/i18n/tr.po @@ -0,0 +1,308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# Ediz Duman <neps1192@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(İki faktörlü kimlik doğrulamayı devre dışı bırakın)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" İki faktörlü kimlik doğrulama etkin" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" İki faktörlü kimlik doğrulama etkin değil" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" İki faktörlü kimlik doğrulama etkin değil\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" İki faktörlü kimlik doğrulama etkin\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "İptal et" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Kullanıcılarda TOTP'yi devre dışı bırak" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "İki Faktörlü Kimlik Doğrulamayı Etkinleştir" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "İki faktörlü kimlik doğrulamayı etkinleştirin" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Uygulamanızdan 6 haneli kodu girin" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Yönlendirme" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Geçersiz kimlik doğrulama kodu biçimi." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Veya gizli kodu manuel olarak girin:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qrcode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Aşağıdaki resmi telefonunuzdaki kimlik doğrulama uygulamasıyla tarayın.<br/>\n" +" Barkodu okuyamıyorsanız, işte bazı alternatif seçenekler:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Bu barkodu uygulamanızla tarayın" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Gizli" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Doğrulama kodu yalnızca sayıları içermelidir" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Topp Gizliği" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "İki Faktörlü Kurulum Sihirbazı" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "İki Faktörlü Kimlik Doğrulama" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "İki Faktörlü Kimlik Doğrulama" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "İki faktörlü kimlik doğrulama zaten etkin" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" +"İki faktörlü kimlik doğrulama yalnızca kendiniz için etkinleştirilebilir" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" +" Kullanıcı(lar) için iki faktörlü kimlik doğrulama devre dışı bırakıldı%s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "İki faktörlü kimlik doğrulama artık etkinleştirilmiştir." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Kullanıcı" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Doğrulama Kodu" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Doğrulama başarısız oldu, lütfen 6 haneli kodu tekrar kontrol edin" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Doğrulayın" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Bu nedir?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "İki faktörlü gizliliğiniz:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "kodu göster" diff --git a/addons/auth_totp/i18n/uk.po b/addons/auth_totp/i18n/uk.po new file mode 100644 index 00000000..f31337a5 --- /dev/null +++ b/addons/auth_totp/i18n/uk.po @@ -0,0 +1,304 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Вимкнути двофакторну аутентифікацію)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Відкрийте модуль двофакторної аутентифікації на вашому\n" +" пристрої, щоб отримати код і підтвердити свою особу" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" Двофакторну аутентифікацію увімкнено" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" Двофакторна аутентифікація не увімкнена" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Двофакторну аутентифікацію не увікмнено\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Двофакторну аутентифікацію увікнено\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"Після сканування штрих-коду, модуль відобразить шестизначний код, який вам\n" +" необхідно ввести нижче. Не турбуйтеся, якщо код змінюється у модулі,\n" +" він залишається дійсним довше." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "Код аутентифікації (6 цифр)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Скасувати" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Створено" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Створено" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Неувімкнений TOTP на користувачах" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Увімкнути двофакторну аутентифікацію" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Увімкнути двофакторну аутентифікацію" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Введіть 6-значний кад з вашого додатку" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизація HTTP" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Формат коду аутентифікації недійсний." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Або введіть секретний код вручну:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qr-код" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Відскануйте зображення нижче за допомогою модуля аутентифіакції на вашому телефоні.<br/>\n" +" Якщо ви не можете відсканувати штрих-код, тут є кілька альтернативних опцій:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Відскануйте цей штрих-клд за допомогою вашого додатку" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Пароль" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "Код верифікації має містити лише цифри" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Ключ Totp" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Помічник двофакторного встановлення" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Двофакторна аутентифікація" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "Двофакторна аутентифікація" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Двофакторну аутентифікацію вже увімкнено" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Двофакторну аутентифікацію можна вмикати лише для себе" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "Двофакторна аутентифікація неувікнена для користувача(ів) %s" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "Увімкнено двофакторну аутентифікацію." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url-адреса" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Користувач" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Користувачі" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Код перевірки" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Верифікація не вдалася, перевірте ще раз шестизначний код" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Перевірити" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "Що це?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Ваш двофакторний пароль:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "показати" diff --git a/addons/auth_totp/i18n/ur.po b/addons/auth_totp/i18n/ur.po new file mode 100644 index 00000000..0535dee5 --- /dev/null +++ b/addons/auth_totp/i18n/ur.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "" diff --git a/addons/auth_totp/i18n/vi.po b/addons/auth_totp/i18n/vi.po new file mode 100644 index 00000000..e1d06984 --- /dev/null +++ b/addons/auth_totp/i18n/vi.po @@ -0,0 +1,290 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Duy BQ <duybq86@gmail.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(Disable two-factor authentication)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "Hủy" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "Disable TOTP on users" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "Enable Two-Factor Authentication" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "Enable two-factor authentication" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "Enter the 6-digit code from your app" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "Invalid authentication code format." + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "Or enter the secret code manually:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qrcode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "Scan this barcode with your app" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "Secret" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "The verification code should only contain numbers" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp Secret" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "Two-Factor Setup Wizard" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "Two-factor Authentication" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "Two-factor authentication already enabled" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "Two-factor authentication can only be enabled for yourself" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "Url" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "Người dùng" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "Người dùng" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "Verification Code" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "Verification failed, please double-check the 6-digit code" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "Xác minh" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "Your two-factor secret:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "show the code" diff --git a/addons/auth_totp/i18n/zh_CN.po b/addons/auth_totp/i18n/zh_CN.po new file mode 100644 index 00000000..9a0f5d6c --- /dev/null +++ b/addons/auth_totp/i18n/zh_CN.po @@ -0,0 +1,308 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# Martin Trigaux, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# ChinaMaker <liuct@chinamaker.net>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: 稀饭~~ <wangwhai@qq.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(取消双重认证)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" 在你的设备上打开双重认证APP\n" +" 获得验证码来校验你的身份" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" 启用双重验证" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" 双重验证未被启用" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" 双重验证未被启用\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" 双重验证被启用\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"扫描条码后,APP将显示6位数验证码,你\n" +" 在下面输入它们。在APP中过段时间验证码会改变,\n" +" 但你不用担心,验证码会在稍长一段时间内有效。" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "验证码(6位)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "取消" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "对用户取消双重认证" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "启用双重认证" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "启用双重认证" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "输入从你的APP上获得的6位验证码" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "无效的验证码格式。" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "最近更改日期" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "最近更新者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "最近更新日期" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "或手动录入密码:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "QR码" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"用你的手机验证APP扫描下面的图片。Scan the image below with the authenticator app on your phone.<br/>\n" +" 如果你不能扫描条码,这里有一些其它选项:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "用你的APP扫描条码" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "密匙" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "验证码应只包含数字" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp密匙" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "双重验证安装向导" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "双重验证" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "双重验证" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "双重验证已经被启用" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "双重验证只能为你自己启用" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "双重验证对用户 %s 未启用" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "双重验证现在已经被启用" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "网址" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "用户" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "用户" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "验证码" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "校验失败,请再次检查6位验证码" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "校验" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "这是什么?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "你的双重验证密匙:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "显示验证码" diff --git a/addons/auth_totp/i18n/zh_TW.po b/addons/auth_totp/i18n/zh_TW.po new file mode 100644 index 00000000..65cd5ec4 --- /dev/null +++ b/addons/auth_totp/i18n/zh_TW.po @@ -0,0 +1,302 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_totp +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:45+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "(Disable two-factor authentication)" +msgstr "(停用兩步驟驗證)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" Open the two-factor authentication app on your\n" +" device to obtain a code and verify your identity" +msgstr "" +"<i class=\"fa fa-2x fa-mobile pull-left\"/>\n" +" 於應用程式獲取代碼並驗證您的身份" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled" +msgstr "" +"<i class=\"fa fa-check-circle\"/>\n" +" 啟用兩階段身份驗證" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "" +"<i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled" +msgstr "" +"<i class=\"fa fa-warning\"/>\n" +" 未啟用兩階段身份驗證" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" Two-factor authentication not enabled\n" +" </span>" +msgstr "" +"<span class=\"alert alert-info\" role=\"status\">\n" +" <i class=\"fa fa-warning\"/>\n" +" 停用兩階段身份驗證。\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form +msgid "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" Two-factor authentication enabled\n" +" </span>" +msgstr "" +"<span class=\"text-success\">\n" +" <i class=\"fa fa-check-circle\"/>\n" +" 啟動兩階段驗證\n" +" </span>" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"After scanning the barcode, the app will display a 6-digit code that you\n" +" should enter below. Don't worry if the code changes in the app,\n" +" it stays valid a bit longer." +msgstr "" +"掃描條碼後,應用程式將顯示一個 6 位元認證代碼,您\n" +" 應輸入以下。不要擔心,如果代碼在應用程式中更改,\n" +" 它將保持短時間的有效期限。" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Authentication Code (6 digits)" +msgstr "認證代碼(6位元)" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Cancel" +msgstr "取消" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date +msgid "Created on" +msgstr "創建時間" + +#. module: auth_totp +#: model:ir.actions.server,name:auth_totp.action_disable_totp +msgid "Disable TOTP on users" +msgstr "在使用者上停用 TOTP身分驗證" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__display_name +#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Enable Two-Factor Authentication" +msgstr "啟用兩步驟驗證" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enable two-factor authentication" +msgstr "啟用兩步驟驗證" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Enter the 6-digit code from your app" +msgstr "從應用中程式輸入 6 位元碼" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id +#: model:ir.model.fields,field_description:auth_totp.field_ir_http__id +#: model:ir.model.fields,field_description:auth_totp.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#, python-format +msgid "Invalid authentication code format." +msgstr "身份驗證代碼格式無效" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update +#: model:ir.model.fields,field_description:auth_totp.field_ir_http____last_update +#: model:ir.model.fields,field_description:auth_totp.field_res_users____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Or enter the secret code manually:" +msgstr "或是手動輸入密碼:" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode +msgid "Qrcode" +msgstr "Qrcode" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "" +"Scan the image below with the authenticator app on your phone.<br/>\n" +" If you cannot scan the barcode, here are some alternative options:" +msgstr "" +"使用手機上的驗證器應用掃描下圖。<br/>\n" +" 如果無法掃描條碼,以下是一些替代選項:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Scan this barcode with your app" +msgstr "使用應用程式掃描此條碼" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret +msgid "Secret" +msgstr "密鑰" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "The verification code should only contain numbers" +msgstr "驗證碼應僅包含數字" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret +msgid "Totp Secret" +msgstr "Totp 密鑰" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_auth_totp_wizard +msgid "Two-Factor Setup Wizard" +msgstr "兩步驟驗證設置嚮導" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Two-factor Authentication" +msgstr "兩步驟驗證" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled +msgid "Two-factor authentication" +msgstr "兩步驟驗證" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication already enabled" +msgstr "已啟用兩步驟驗證" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication can only be enabled for yourself" +msgstr "只能為自己啟用兩步驟身份驗證" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication disabled for user(s) %s" +msgstr "為使用者 %s 停用兩步驟驗證" + +#. module: auth_totp +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Two-factor authentication is now enabled." +msgstr "現在已啟用兩步驟驗證" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url +msgid "Url" +msgstr "網址" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id +msgid "User" +msgstr "使用者" + +#. module: auth_totp +#: model:ir.model,name:auth_totp.model_res_users +msgid "Users" +msgstr "使用者" + +#. module: auth_totp +#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Verification Code" +msgstr "驗證碼" + +#. module: auth_totp +#: code:addons/auth_totp/controllers/home.py:0 +#: code:addons/auth_totp/models/res_users.py:0 +#, python-format +msgid "Verification failed, please double-check the 6-digit code" +msgstr "驗證失敗,請仔細檢查 6 位元碼" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form +msgid "Verify" +msgstr "驗證" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field +msgid "What is this?" +msgstr "這是什麼?" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "Your two-factor secret:" +msgstr "您的兩步驟密鑰:" + +#. module: auth_totp +#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard +msgid "show the code" +msgstr "顯示代碼" diff --git a/addons/auth_totp/models/__init__.py b/addons/auth_totp/models/__init__.py new file mode 100644 index 00000000..5f0fe0d9 --- /dev/null +++ b/addons/auth_totp/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +from . import ir_http +from . import res_users diff --git a/addons/auth_totp/models/ir_http.py b/addons/auth_totp/models/ir_http.py new file mode 100644 index 00000000..9bae70fa --- /dev/null +++ b/addons/auth_totp/models/ir_http.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +from odoo import models +from odoo.http import request + +class IrHttp(models.AbstractModel): + _inherit = 'ir.http' + + def session_info(self): + info = super().session_info() + # because frontend session_info uses this key and is embedded in + # the view source + info["user_id"] = request.session.uid, + return info diff --git a/addons/auth_totp/models/res_users.py b/addons/auth_totp/models/res_users.py new file mode 100644 index 00000000..5ba901a2 --- /dev/null +++ b/addons/auth_totp/models/res_users.py @@ -0,0 +1,238 @@ +# -*- coding: utf-8 -*- +import base64 +import functools +import hmac +import io +import logging +import os +import re +import struct +import time + +import werkzeug.urls + +from odoo import _, api, fields, models +from odoo.addons.base.models.res_users import check_identity +from odoo.exceptions import AccessDenied, UserError +from odoo.http import request, db_list + +_logger = logging.getLogger(__name__) + +compress = functools.partial(re.sub, r'\s', '') +class Users(models.Model): + _inherit = 'res.users' + + totp_secret = fields.Char(copy=False, groups=fields.NO_ACCESS) + totp_enabled = fields.Boolean(string="Two-factor authentication", compute='_compute_totp_enabled') + + def __init__(self, pool, cr): + init_res = super().__init__(pool, cr) + type(self).SELF_READABLE_FIELDS = self.SELF_READABLE_FIELDS + ['totp_enabled'] + return init_res + + def _mfa_url(self): + r = super()._mfa_url() + if r is not None: + return r + if self.totp_enabled: + return '/web/login/totp' + + @api.depends('totp_secret') + def _compute_totp_enabled(self): + for r, v in zip(self, self.sudo()): + r.totp_enabled = bool(v.totp_secret) + + def _rpc_api_keys_only(self): + # 2FA enabled means we can't allow password-based RPC + self.ensure_one() + return self.totp_enabled or super()._rpc_api_keys_only() + + def _get_session_token_fields(self): + return super()._get_session_token_fields() | {'totp_secret'} + + def _totp_check(self, code): + sudo = self.sudo() + key = base64.b32decode(sudo.totp_secret) + match = TOTP(key).match(code) + if match is None: + _logger.info("2FA check: FAIL for %s %r", self, self.login) + raise AccessDenied() + _logger.info("2FA check: SUCCESS for %s %r", self, self.login) + + def _totp_try_setting(self, secret, code): + if self.totp_enabled or self != self.env.user: + _logger.info("2FA enable: REJECT for %s %r", self, self.login) + return False + + secret = compress(secret).upper() + match = TOTP(base64.b32decode(secret)).match(code) + if match is None: + _logger.info("2FA enable: REJECT CODE for %s %r", self, self.login) + return False + + self.sudo().totp_secret = secret + if request: + self.flush() + # update session token so the user does not get logged out (cache cleared by change) + new_token = self.env.user._compute_session_token(request.session.sid) + request.session.session_token = new_token + + _logger.info("2FA enable: SUCCESS for %s %r", self, self.login) + return True + + @check_identity + def totp_disable(self): + logins = ', '.join(map(repr, self.mapped('login'))) + if not (self == self.env.user or self.env.user._is_admin() or self.env.su): + _logger.info("2FA disable: REJECT for %s (%s) by uid #%s", self, logins, self.env.user.id) + return False + + self.sudo().write({'totp_secret': False}) + if request and self == self.env.user: + self.flush() + # update session token so the user does not get logged out (cache cleared by change) + new_token = self.env.user._compute_session_token(request.session.sid) + request.session.session_token = new_token + + _logger.info("2FA disable: SUCCESS for %s (%s) by uid #%s", self, logins, self.env.user.id) + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'type': 'warning', + 'message': _("Two-factor authentication disabled for user(s) %s", logins), + 'next': {'type': 'ir.actions.act_window_close'}, + } + } + + @check_identity + def totp_enable_wizard(self): + if self.env.user != self: + raise UserError(_("Two-factor authentication can only be enabled for yourself")) + + if self.totp_enabled: + raise UserError(_("Two-factor authentication already enabled")) + + secret_bytes_count = TOTP_SECRET_SIZE // 8 + secret = base64.b32encode(os.urandom(secret_bytes_count)).decode() + # format secret in groups of 4 characters for readability + secret = ' '.join(map(''.join, zip(*[iter(secret)]*4))) + w = self.env['auth_totp.wizard'].create({ + 'user_id': self.id, + 'secret': secret, + }) + return { + 'type': 'ir.actions.act_window', + 'target': 'new', + 'res_model': 'auth_totp.wizard', + 'name': _("Enable Two-Factor Authentication"), + 'res_id': w.id, + 'views': [(False, 'form')], + } + +class TOTPWizard(models.TransientModel): + _name = 'auth_totp.wizard' + _description = "Two-Factor Setup Wizard" + + user_id = fields.Many2one('res.users', required=True, readonly=True) + secret = fields.Char(required=True, readonly=True) + url = fields.Char(store=True, readonly=True, compute='_compute_qrcode') + qrcode = fields.Binary( + attachment=False, store=True, readonly=True, + compute='_compute_qrcode', + ) + code = fields.Char(string="Verification Code", size=7) + + @api.depends('user_id.login', 'user_id.company_id.display_name', 'secret') + def _compute_qrcode(self): + # TODO: make "issuer" configurable through config parameter? + global_issuer = request and request.httprequest.host.split(':', 1)[0] + for w in self: + issuer = global_issuer or w.user_id.company_id.display_name + w.url = url = werkzeug.urls.url_unparse(( + 'otpauth', 'totp', + werkzeug.urls.url_quote(f'{issuer}:{w.user_id.login}', safe=':'), + werkzeug.urls.url_encode({ + 'secret': compress(w.secret), + 'issuer': issuer, + # apparently a lowercase hash name is anathema to google + # authenticator (error) and passlib (no token) + 'algorithm': ALGORITHM.upper(), + 'digits': DIGITS, + 'period': TIMESTEP, + }), '' + )) + + data = io.BytesIO() + import qrcode + qrcode.make(url.encode(), box_size=4).save(data, optimise=True, format='PNG') + w.qrcode = base64.b64encode(data.getvalue()).decode() + + @check_identity + def enable(self): + try: + c = int(compress(self.code)) + except ValueError: + raise UserError(_("The verification code should only contain numbers")) + if self.user_id._totp_try_setting(self.secret, c): + self.secret = '' # empty it, because why keep it until GC? + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'type': 'success', + 'message': _("Two-factor authentication is now enabled."), + 'next': {'type': 'ir.actions.act_window_close'}, + } + } + raise UserError(_('Verification failed, please double-check the 6-digit code')) + +# 160 bits, as recommended by HOTP RFC 4226, section 4, R6. +# Google Auth uses 80 bits by default but supports 160. +TOTP_SECRET_SIZE = 160 + +# The algorithm (and key URI format) allows customising these parameters but +# google authenticator doesn't support it +# https://github.com/google/google-authenticator/wiki/Key-Uri-Format +ALGORITHM = 'sha1' +DIGITS = 6 +TIMESTEP = 30 + +class TOTP: + def __init__(self, key): + self._key = key + + def match(self, code, t=None, window=TIMESTEP): + """ + :param code: authenticator code to check against this key + :param int t: current timestamp (seconds) + :param int window: fuzz window to account for slow fingers, network + latency, desynchronised clocks, ..., every code + valid between t-window an t+window is considered + valid + """ + if t is None: + t = time.time() + + low = int((t - window) / TIMESTEP) + high = int((t + window) / TIMESTEP) + 1 + + return next(( + counter for counter in range(low, high) + if hotp(self._key, counter) == code + ), None) + +def hotp(secret, counter): + # C is the 64b counter encoded in big-endian + C = struct.pack(">Q", counter) + mac = hmac.new(secret, msg=C, digestmod=ALGORITHM).digest() + # the data offset is the last nibble of the hash + offset = mac[-1] & 0xF + # code is the 4 bytes at the offset interpreted as a 31b big-endian uint + # (31b to avoid sign concerns). This effectively limits digits to 9 and + # hard-limits it to 10: each digit is normally worth 3.32 bits but the + # 10th is only worth 1.1 (9 digits encode 29.9 bits). + code = struct.unpack_from('>I', mac, offset)[0] & 0x7FFFFFFF + r = code % (10 ** DIGITS) + # NOTE: use text / bytes instead of int? + return r diff --git a/addons/auth_totp/security/security.xml b/addons/auth_totp/security/security.xml new file mode 100644 index 00000000..4d44c23a --- /dev/null +++ b/addons/auth_totp/security/security.xml @@ -0,0 +1,16 @@ +<odoo> + <record model="ir.model.access" id="access_auth_totp_wizard"> + <field name="name">auth_totp wizard access rules</field> + <field name="model_id" ref="model_auth_totp_wizard"/> + <field name="group_id" ref="base.group_user"/> + <field name="perm_read">1</field> + <field name="perm_write">1</field> + <field name="perm_create">1</field> + <field name="perm_unlink">1</field> + </record> + <record model="ir.rule" id="rule_auth_totp_wizard"> + <field name="name">Users can only access their own wizard</field> + <field name="model_id" ref="model_auth_totp_wizard"/> + <field name="domain_force">[('user_id', '=', user.id)]</field> + </record> +</odoo> diff --git a/addons/auth_totp/static/tests/totp_flow.js b/addons/auth_totp/static/tests/totp_flow.js new file mode 100644 index 00000000..eea24504 --- /dev/null +++ b/addons/auth_totp/static/tests/totp_flow.js @@ -0,0 +1,247 @@ +odoo.define('auth_totp.tours', function(require) { +"use strict"; + +const tour = require('web_tour.tour'); +const ajax = require('web.ajax'); + +function openRoot() { + return [{ + content: "return to client root to avoid race condition", + trigger: 'body', + run() { + $('body').addClass('wait'); + window.location = '/web'; + } + }, { + content: "wait for client reload", + trigger: 'body:not(.wait)', + run() {} + }]; +} +function openUserProfileAtSecurityTab() { + return [{ + content: 'Open user account menu', + trigger: '.o_user_menu .oe_topbar_name', + run: 'click', + }, { + content: "Open preferences / profile screen", + trigger: '[data-menu=settings]', + run: 'click', + }, { + content: "Switch to security tab", + trigger: 'a[role=tab]:contains("Account Security")', + run: 'click', + }]; +} + +tour.register('totp_tour_setup', { + test: true, + url: '/web' +}, [...openUserProfileAtSecurityTab(), { + content: "Open totp wizard", + trigger: 'button[name=totp_enable_wizard]', +}, { + content: "Check that we have to enter enhanced security mode", + trigger: 'div:contains("confirm your password")', + run: () => {}, +}, { + content: "Input password", + trigger: '[name=password]', + run: 'text demo', // FIXME: better way to do this? +}, { + content: "Confirm", + trigger: "button:contains(Confirm Password)", +}, { + content: "Check the wizard has opened", + trigger: 'div:contains("Scan the image below")', + run: () => {} +}, { + content: "Get secret from collapsed div", + trigger: 'a:contains("show the code")', + run(helpers) { + const secret = this.$anchor.closest('div').find('code').text(); + ajax.jsonRpc('/totphook', 'call', { + secret + }).then((token) => { + helpers._text(helpers._get_action_values('input[name=code]'), token); + helpers._click(helpers._get_action_values('button.btn-primary:contains(Enable)')); + $('body').addClass('got-token') + }); + } +}, { + content: 'wait for rpc', + trigger: 'body.got-token', + run() {} +}, +...openRoot(), +...openUserProfileAtSecurityTab(), +{ + content: "Check that the button has changed", + trigger: 'button:contains(Disable two-factor authentication)', + run: () => {} +}]); + +tour.register('totp_login_enabled', { + test: true, + url: '/' +}, [{ + content: "check that we're on the login page or go to it", + trigger: 'input#login, a:contains(Sign in)' +}, { + content: "input login", + trigger: 'input#login', + run: 'text demo', +}, { + content: 'input password', + trigger: 'input#password', + run: 'text demo', +}, { + content: "click da button", + trigger: 'button:contains("Log in")', +}, { + content: "expect totp screen", + trigger: 'label:contains(Authentication Code)', +}, { + content: "input code", + trigger: 'input[name=totp_token]', + run(helpers) { + ajax.jsonRpc('/totphook', 'call', {}).then((token) => { + helpers._text(helpers._get_action_values(), token); + // FIXME: is there a way to put the button as its own step trigger without + // the tour straight blowing through and not waiting for this? + helpers._click(helpers._get_action_values('button:contains("Verify")')); + }); + } +}, { + content: "check we're logged in", + trigger: ".o_user_menu .oe_topbar_name", + run: () => {} +}, +// now go and disable totp would be annoying to do in a separate tour +// because we'd need to login & totp again as HttpCase.authenticate can't +// succeed w/ totp enabled +...openUserProfileAtSecurityTab(), +{ + content: "Open totp wizard", + trigger: 'button[name=totp_disable]', +}, { + content: "Check that we have to enter enhanced security mode", + trigger: 'div:contains("confirm your password")', + run: () => {}, +}, { + content: "Input password", + trigger: '[name=password]', + run: 'text demo', // FIXME: better way to do this? +}, { + content: "Confirm", + trigger: "button:contains(Confirm Password)", +}, +...openRoot(), +...openUserProfileAtSecurityTab(), +{ + content: "Check that the button has changed", + trigger: 'button:contains(Enable two-factor authentication)', + run: () => {} +}]); + +tour.register('totp_login_disabled', { + test: true, + url: '/' +}, [{ + content: "check that we're on the login page or go to it", + trigger: 'input#login, a:contains(Sign in)' +}, { + content: "input login", + trigger: 'input#login', + run: 'text demo', +}, { + content: 'input password', + trigger: 'input#password', + run: 'text demo', +}, { + content: "click da button", + trigger: 'button:contains("Log in")', +}, +// normally we'd end the tour here as it's all we care about but there are a +// bunch of ongoing queries from the loading of the web client which cause +// issues, so go and open the preferences / profile screen to make sure +// everything settles down +...openUserProfileAtSecurityTab(), +]); + +const columns = {}; +tour.register('totp_admin_disables', { + test: true, + url: '/web' +}, [tour.stepUtils.showAppsMenuItem(), { + content: 'Go to settings', + trigger: '[data-menu-xmlid="base.menu_administration"]' +}, { + content: 'Wait for page', + trigger: '.o_menu_brand:contains("Settings")', + run: () => {} +}, { + content: "Open Users menu", + trigger: '[data-menu-xmlid="base.menu_users"]' +}, { + content: "Open Users view", + trigger: '[data-menu-xmlid="base.menu_action_res_users"]', + run: function (helpers) { + // funny story: the users view we're trying to reach, sometimes we're + // already there, but if we re-click the next step executes before the + // action has the time to re-load, the one after that doesn't, and our + // selection get discarded by the action reloading, so here try to + // see if we're already on the users action through the breadcrumb and + // just close the menu if so + const $crumb = $('.breadcrumb'); + if ($crumb.text().indexOf('Users') === -1) { + // on general settings page, click menu + helpers.click(); + } else { + // else close menu + helpers.click($('[data-menu-xmlid="base.menu_users"]')); + } + } +}, { + content: "Find Demo User", + trigger: 'td.o_data_cell:contains("demo")', + run: function (helpers) { + const $titles = this.$anchor.closest('table').find('tr:first th'); + for (let i=0; i<$titles.length; ++i) { + columns[$titles[i].getAttribute('data-name')] = i; + } + const $row = this.$anchor.closest('tr'); + const sel = $row.find('.o_list_record_selector input[type=checkbox]'); + const totp = $row[0].children[columns['totp_enabled']].querySelector('input'); + if (totp.checked) { + helpers.click(sel); + } + } +}, { + content: "Open Actions menu", + trigger: 'button.o_dropdown_toggler_btn:contains("Action")' +}, { + content: "Select totp remover", + trigger: 'a.dropdown-item:contains(Disable TOTP on users)' +}, { // enhanced security yo + content: "Check that we have to enter enhanced security mode", +trigger: 'div:contains("confirm your password")', + run: () => {}, +}, { + content: "Input password", + trigger: '[name=password]', + run: 'text admin', // FIXME: better way to do this? +}, { + content: "Confirm", + trigger: "button:contains(Confirm Password)", +}, { + content: "check that demo user has been de-totp'd", + trigger: "td.o_data_cell:contains(demo)", + run: function () { + const totpcell = this.$anchor.closest('tr')[0].children[columns['totp_enabled']]; + if (totpcell.querySelector('input').checked) { + throw new Error("totp should have been disabled on demo user"); + } + } +}]) +}); diff --git a/addons/auth_totp/tests/__init__.py b/addons/auth_totp/tests/__init__.py new file mode 100644 index 00000000..31e2de2b --- /dev/null +++ b/addons/auth_totp/tests/__init__.py @@ -0,0 +1 @@ +from . import test_totp diff --git a/addons/auth_totp/tests/test_totp.py b/addons/auth_totp/tests/test_totp.py new file mode 100644 index 00000000..5b0e21b2 --- /dev/null +++ b/addons/auth_totp/tests/test_totp.py @@ -0,0 +1,83 @@ +import time +from xmlrpc.client import Fault + +from passlib.totp import TOTP + +from odoo import http +from odoo.exceptions import AccessDenied +from odoo.service import common as auth, model +from odoo.tests import tagged, HttpCase, get_db_name + +from ..controllers.home import Home + +@tagged('post_install', '-at_install') +class TestTOTP(HttpCase): + def setUp(self): + super().setUp() + + totp = None + # might be possible to do client-side using `crypto.subtle` instead of + # this horror show, but requires working on 64b integers, & BigInt is + # significantly less well supported than crypto + def totp_hook(self, secret=None): + nonlocal totp + if totp is None: + totp = TOTP(secret) + if secret: + return totp.generate().token + else: + # on check, take advantage of window because previous token has been + # "burned" so we can't generate the same, but tour is so fast + # we're pretty certainly within the same 30s + return totp.generate(time.time() + 30).token + # because not preprocessed by ControllerType metaclass + totp_hook.routing_type = 'json' + self.env['ir.http']._clear_routing_map() + # patch Home to add test endpoint + Home.totp_hook = http.route('/totphook', type='json', auth='none')(totp_hook) + # remove endpoint and destroy routing map + @self.addCleanup + def _cleanup(): + del Home.totp_hook + self.env['ir.http']._clear_routing_map() + + def test_totp(self): + # 1. Enable 2FA + self.start_tour('/web', 'totp_tour_setup', login='demo') + + # 2. Verify that RPC is blocked because 2FA is on. + self.assertFalse( + self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {}), + "Should not have returned a uid" + ) + self.assertFalse( + self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {'interactive': True}), + 'Trying to fake the auth type should not work' + ) + uid = self.env.ref('base.user_demo').id + with self.assertRaisesRegex(Fault, r'Access Denied'): + self.xmlrpc_object.execute_kw( + get_db_name(), uid, 'demo', + 'res.users', 'read', [uid, ['login']] + ) + + # 3. Check 2FA is required and disable it + self.start_tour('/', 'totp_login_enabled', login=None) + + # 4. Finally, check that 2FA is in fact disabled + self.start_tour('/', 'totp_login_disabled', login=None) + + # 5. Check that rpc is now re-allowed + uid = self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {}) + self.assertEqual(uid, self.env.ref('base.user_demo').id) + [r] = self.xmlrpc_object.execute_kw( + get_db_name(), uid, 'demo', + 'res.users', 'read', [uid, ['login']] + ) + self.assertEqual(r['login'], 'demo') + + + def test_totp_administration(self): + self.start_tour('/web', 'totp_tour_setup', login='demo') + self.start_tour('/web', 'totp_admin_disables', login='admin') + self.start_tour('/', 'totp_login_disabled', login=None) diff --git a/addons/auth_totp/views/templates.xml b/addons/auth_totp/views/templates.xml new file mode 100644 index 00000000..100dbbc4 --- /dev/null +++ b/addons/auth_totp/views/templates.xml @@ -0,0 +1,45 @@ +<odoo> + <template id="assets_tests" inherit_id="web.assets_tests"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/auth_totp/static/tests/totp_flow.js"></script> + </xpath> + </template> + <template id="auth_totp_form"> + <t t-call="web.login_layout"> + <t t-set="disable_footer">1</t> + <div class="oe_login_form"> + <h5 class="card-title">Two-factor Authentication</h5> + <form method="POST" action="" class=""> + <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> + <input type="hidden" name="redirect" t-att-value="redirect"/> + <div class="form-group"> + <label for="totp_token">Authentication Code (6 digits)</label> + <input id="totp_token" name="totp_token" class="form-control mb-2" + autofocus="autofocus" required="required"/> + </div> + <p class="alert alert-danger" t-if="error" role="alert"> + <t t-esc="error"/> + </p> + <div t-attf-class="clearfix oe_login_buttons text-center mb-1"> + <button type="submit" class="btn btn-primary btn-block"> + Verify + </button> + </div> + <div class="small mb-2 mt-2 text-muted"> + <i class="fa fa-2x fa-mobile pull-left"/> + Open the two-factor authentication app on your + device to obtain a code and verify your identity + </div> + </form> + </div> + <div class="text-center pb-2 border-top"> + <form method="POST" action="/web/session/logout" class="form-inline"> + <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> + <button type="submit" class="btn btn-link btn-sm mb-2"> + Cancel + </button> + </form> + </div> + </t> + </template> +</odoo> diff --git a/addons/auth_totp/views/user_preferences.xml b/addons/auth_totp/views/user_preferences.xml new file mode 100644 index 00000000..81c7336a --- /dev/null +++ b/addons/auth_totp/views/user_preferences.xml @@ -0,0 +1,142 @@ +<odoo> + <record model="ir.ui.view" id="view_totp_list"> + <field name="name">users list: add totp status</field> + <field name="model">res.users</field> + <field name="inherit_id" ref="base.view_users_tree"/> + <field name="arch" type="xml"> + <tree> + <field name="totp_enabled"/> + </tree> + </field> + </record> + <record model="ir.ui.view" id="view_totp_form"> + <field name="name">user form: add totp status</field> + <field name="model">res.users</field> + <field name="inherit_id" ref="base.view_users_form"/> + <field name="arch" type="xml"> + <xpath expr="//page[@name='references']/group[1]" position="before"> + <field name="totp_enabled" invisible="1"/> + <group attrs="{'invisible': [('totp_enabled', '!=', False)]}"> + <div> + <span class="alert alert-info" role="status"> + <i class="fa fa-warning"/> + Two-factor authentication not enabled + </span> + </div> + </group> + <group attrs="{'invisible': [('totp_enabled', '=', False)]}"> + <div> + <span class="text-success"> + <i class="fa fa-check-circle"/> + Two-factor authentication enabled + </span> + </div> + </group> + </xpath> + </field> + </record> + + <record model="ir.actions.server" id="action_disable_totp"> + <field name="name">Disable TOTP on users</field> + <field name="model_id" ref="base.model_res_users"/> + <field name="binding_model_id" ref="base.model_res_users"/> + <field name="binding_view_types">list</field> + <field name="state">code</field> + <field name="code"> + action = records.totp_disable() + </field> + <field name="groups_id" eval="[(4, ref('base.group_erp_manager'), 0)]"/> + </record> + + <record model="ir.ui.view" id="view_totp_wizard"> + <field name="name">auth_totp wizard</field> + <field name="model">auth_totp.wizard</field> + <field name="arch" type="xml"> + <form> + <sheet> + <div class="row container"> + <div class="mb-3"> + <h3 class="font-weight-bold">Scan this barcode with your app</h3> + <div> + Scan the image below with the authenticator app on your phone.<br/> + If you cannot scan the barcode, here are some alternative options: + <ul> + <li><field class="text-wrap" name="url" widget="url" + options="{'website_path': True}" + text="Click on this link to open your authenticator app"/></li> + + <li>Or enter the secret code manually: + <a data-toggle="collapse" + href="#collapseTotpSecret" role="button" aria-expanded="false" + aria-controls="collapseTotpSecret">show the code</a> + </li> + </ul> + <!-- code outside list to have more horiz space on mobile --> + <div class="collapse col-12 col-md-6" id="collapseTotpSecret"> + <div class="card card-body"> + <h3>Your two-factor secret:</h3> + <code class="text-center"><field name="secret"/></code> + </div> + </div> + </div> + + <field class="offset-1" name="qrcode" readonly="True" widget="image"/> + + <h3 class="font-weight-bold">Enter the 6-digit code from your app</h3> + <div class="text-justify col-10 col-lg-6 px-0"> + After scanning the barcode, the app will display a 6-digit code that you + should enter below. Don't worry if the code changes in the app, + it stays valid a bit longer. + </div> + <div class="mt-2"> + <label for="code" class="col-4 col-md-12 px-0">Verification Code</label> + <field required="True" name="code" class="col-10 col-md-6 px-0"/> + </div> + + </div> + </div> + </sheet> + <footer> + <button type="object" name="enable" class="btn btn-primary" + string="Enable two-factor authentication"/> + <button string="Cancel" special="cancel"/> + </footer> + </form> + </field> + </record> + + <record model="ir.ui.view" id="view_totp_field"> + <field name="name">users preference: totp</field> + <field name="model">res.users</field> + <field name="inherit_id" ref="base.view_users_form_simple_modif"/> + <field name="arch" type="xml"> + <button name="preference_change_password" position="after"> + <field name="totp_enabled" invisible="1"/> + <group attrs="{'invisible': [('totp_enabled', '!=', False)]}"> + <div> + <span class="alert alert-info" role="status"> + <i class="fa fa-warning"/> + Two-factor authentication not enabled + <a href="https://www.odoo.com/documentation/14.0/applications/general/auth/2fa.html" + title="What is this?" class="o_doc_link" target="_blank"></a> + </span> + <button name="totp_enable_wizard" type="object" string="Enable two-factor authentication" + class="btn btn-info mx-3"/> + </div> + </group> + <group attrs="{'invisible': [('totp_enabled', '=', False)]}"> + <div> + <span class="text-success"> + <i class="fa fa-check-circle"/> + Two-factor authentication enabled + <a href="https://www.odoo.com/documentation/14.0/applications/general/auth/2fa.html" + title="What is this?" class="o_doc_link" target="_blank"></a> + </span> + <button name="totp_disable" type="object" string="(Disable two-factor authentication)" + class="btn btn-link text-muted"/> + </div> + </group> + </button> + </field> + </record> +</odoo> |
