Начальное наполнение
This commit is contained in:
parent
e7c8edd58e
commit
aedb5153ca
4
__init__.py
Normal file
4
__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
26
__manifest__.py
Normal file
26
__manifest__.py
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
'name': '2FA Invite mail',
|
||||
'description': """
|
||||
2FA Invite mail
|
||||
===============
|
||||
Allow the users to invite another user to use Two-Factor authentication
|
||||
by sending an email to the target user. This email redirects them to:
|
||||
- the users security settings if the user is internal.
|
||||
- the portal security settings page if the user is not internal.
|
||||
""",
|
||||
'depends': ['auth_totp', 'mail'],
|
||||
'category': 'Extra Tools',
|
||||
'auto_install': True,
|
||||
'data': [
|
||||
'data/ir_action_data.xml',
|
||||
'data/mail_template_data.xml',
|
||||
'data/security_notifications_template.xml',
|
||||
'views/res_users_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_tests': [
|
||||
'auth_totp_mail/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
27
data/ir_action_data.xml
Normal file
27
data/ir_action_data.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Invite to user 2FA -->
|
||||
<record model="ir.actions.server" id="action_invite_totp">
|
||||
<field name="name">Invite to use two-factor authentication</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.action_totp_invite()
|
||||
</field>
|
||||
<field name="groups_id" eval="[(4, ref('base.group_erp_manager'))]"/>
|
||||
</record>
|
||||
|
||||
<!--Action called when using the link in "Invite to use 2FA" mail-->
|
||||
<record model="ir.actions.server" id="action_activate_two_factor_authentication">
|
||||
<field name="name">Open two-factor authentication configuration</field>
|
||||
<field name="model_id" ref="base.model_res_users"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
user = env.user
|
||||
action = user.action_open_my_account_settings()
|
||||
</field>
|
||||
<field name="groups_id" eval="[(4, ref('base.group_user'))]"/>
|
||||
</record>
|
||||
</odoo>
|
32
data/mail_template_data.xml
Normal file
32
data/mail_template_data.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="mail_template_totp_invite" model="mail.template">
|
||||
<field name="name">Settings: 2Fa Invitation</field>
|
||||
<field name="model_id" ref="base.model_res_users" />
|
||||
<field name="email_from">{{ (object.company_id.email_formatted or user.email_formatted) }}</field>
|
||||
<field name="subject">Invitation to activate two-factor authentication on your Odoo account</field>
|
||||
<field name="partner_to">{{ object.partner_id.id }}</field>
|
||||
<field name="lang">{{ object.partner_id.lang }}</field>
|
||||
<field name="auto_delete" eval="True"/>
|
||||
<field name="body_html" type="html">
|
||||
<div style="margin: 0px; padding: 0px; font-size: 13px;">
|
||||
<p style="margin: 0px; padding: 0px; font-size: 13px;">
|
||||
Dear <t t-out="object.partner_id.name or ''"></t><br/><br/>
|
||||
<t t-out="user.name or ''"></t> requested you activate two-factor authentication to protect your account.<br/><br/>
|
||||
Two-factor Authentication ("2FA") is a system of double authentication.
|
||||
The first one is done with your password and the second one with a code you get from a dedicated mobile app.
|
||||
Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.
|
||||
|
||||
<p style="margin: 16px 0px 16px 0px; text-align: center;">
|
||||
<a t-att-href="object.get_totp_invite_url()"
|
||||
style="background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;">
|
||||
Activate my two-factor Authentication
|
||||
</a>
|
||||
</p>
|
||||
</p>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
16
data/security_notifications_template.xml
Normal file
16
data/security_notifications_template.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<!-- Extend the security update template to include 2fa suggestion -->
|
||||
<template id="account_security_setting_update" inherit_id="mail.account_security_setting_update">
|
||||
<xpath expr="//ul[hasclass('o_mail_account_security_suggestions')]/li[1]" position="after">
|
||||
<li t-if="suggest_2fa">
|
||||
<span>Consider</span>
|
||||
<a href="https://www.odoo.com/documentation/17.0/applications/general/auth/2fa.html">
|
||||
activating Two-factor Authentication
|
||||
</a>
|
||||
</li>
|
||||
</xpath>
|
||||
</template>
|
||||
</data>
|
||||
</odoo>
|
182
i18n/ar.po
Normal file
182
i18n/ar.po
Normal file
@ -0,0 +1,182 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" عزيزنا <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> طلب تفعيلك للمصادقة ثنائية العوامل لحماية حسابك.<br><br>\n"
|
||||
" المصادقة ثنائية العوامل (\"2FA\") هي نظام للمصادقة المزدوجة.\n"
|
||||
" تتم المصادقة الأولى عن طريق كلمة السر والثانية عن طريق رمز تحصل عليه من خلال تطبيق على الهاتف المحمول مخصص لذلك.\n"
|
||||
" المفضلة منها تتضمن Authy، مصادقة Google، ومصادقة Microsoft.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" تفعيل المصادقة ثنائية العوامل لدي\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>ضع بعين الاعتبار</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "لقد تمت إضافة جهاز موثوق إلى حسابك للتو: %(device_name)s "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "لقد تمت إزالة جهاز موثوق من حسابك للتو: %(device_names)s "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "أمن الحساب "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "جهاز المصادقة "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "دعوة لتفعيل المصادقة ثنائية العوامل في حساب أودو الخاص بك "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"تم إرسال دعوة لاستخدام المصادقة ثنائية العوامل إلى المستخدم (المستخدمين) "
|
||||
"التاليين: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "الدعوة إلى استخدام المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "الدعوة لاستخدام المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "فتح تهيئة المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "تحديث الأمان: تم تفعيل المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "تحديث الأمان: تم تعطيل المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "تحديث الأمان: تمت إضافة جهاز "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "تحديث الأمان: تمت إزالة جهاز "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "الإعدادات: دعوة إلى إجراء المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "تم تفعيل المصادقة ثنائية العوامل في حسابك "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "تم تعطيل المصادقة ثنائية العوامل في حسابك "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "جارِ تفعيل المصادقة ثنائية العوامل "
|
160
i18n/auth_totp_mail.pot
Normal file
160
i18n/auth_totp_mail.pot
Normal file
@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:55+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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
165
i18n/bg.po
Normal file
165
i18n/bg.po
Normal file
@ -0,0 +1,165 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: aleksandar ivanov, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
170
i18n/ca.po
Normal file
170
i18n/ca.po
Normal file
@ -0,0 +1,170 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# marcescu, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# AncesLatino2004, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: AncesLatino2004, 2023\n"
|
||||
"Language-Team: Catalan (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Seguretat del compte"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispositiu d'autenticació"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Invitació per activar l'autenticació de dos factors al vostre compte d'Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"S'ha enviat una invitació per utilitzar l'autenticació de dos factors per "
|
||||
"als usuari(s) següents: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Convida a utilitzar 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Convida a utilitzar l'autenticació de dos factors"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Obriu la configuració d'autenticació de dos factors"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Configuració: 2Fa Invitació"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
188
i18n/cs.po
Normal file
188
i18n/cs.po
Normal file
@ -0,0 +1,188 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Stanislav Kurinec, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Stanislav Kurinec, 2024\n"
|
||||
"Language-Team: Czech (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Vážený <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> požádal o aktivaci dvoufaktorové autentizace pro ochranu vašeho účtu.<br><br>\n"
|
||||
" Dvoufaktorová autentizace (\"2FA\") je systém dvojí autentizace.\n"
|
||||
" První se provádí pomocí vašeho hesla a druhá pomocí kódu, který získáte ze speciální mobilní aplikace.\n"
|
||||
" Mezi oblíbené aplikace patří Authy, Google Authenticator nebo Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Aktivovat moji dvoufaktorovou autentizaci\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Zvažte</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Do vašeho účtu bylo právě přidáno důvěryhodné zařízení: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Z vašeho účtu bylo právě odstraněno důvěryhodné zařízení: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Zabezpečení účtu"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentikační zařízení"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Pozvánka k aktivaci dvoufaktorové autentizace na vašem účtu Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Pozvánka k použití dvoufaktorového ověření byla odeslaná pro následující "
|
||||
"uživatele: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Pozvat na použití 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Pozvat k použití dvoufaktorového ověřování"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Otevřete konfiguraci dvoufaktorového ověření"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Aktualizace zabezpečení: Aktivováno 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Aktualizace zabezpečení: Deaktivováno 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Aktualizace zabezpečení: Přidáno zařízení"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Aktualizace zabezpečení: Odebráno zařízení"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Nastavení: 2FA Pozvánka"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Na vašem účtu byla aktivována dvoufaktorová autentizace"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Dvoufaktorové ověření bylo na vašem účtu deaktivováno"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "aktivace dvoufaktorové autentizace"
|
168
i18n/da.po
Normal file
168
i18n/da.po
Normal file
@ -0,0 +1,168 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Konto sikkerhed"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Godkendelsesenhed"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Invitation til at aktivere 2-trins godkendelse på din Odoo konto"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Invitation til at bruge 2-trins godkendelse og afsendt til følgende "
|
||||
"bruger(e): %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Inviter til at bruge 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Inviter til at bruge 2-trins godkendelse"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Åben 2-trins godkendelses konfiguration"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "Aktivering af 2-trins godkendelse"
|
189
i18n/de.po
Normal file
189
i18n/de.po
Normal file
@ -0,0 +1,189 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Hallo <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> fordert Sie dazu auf, Zwei-Faktor-Authentifizierung zu aktivieren, um Ihr Konto zu schützen.<br><br>\n"
|
||||
" Zwei-Faktor-Authentifizierung („2FA“) ist ein System der doppelten Authentifizierung.\n"
|
||||
" Die erste erfolgt mit Ihrem Passwort, die zweite mit einem Code, den Sie über eine spezielle mobile App erhalten.\n"
|
||||
" Zu den beliebtesten gehören Authy, Google Authenticator oder Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Meine 2-Faktor-Authentifizierung aktivieren\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Berücksichtigen</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Ihrem Konto wurde gerade ein vertrauenswürdiges Gerät hinzugefügt: "
|
||||
"%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Von Ihrem Konto wurde gerade ein vertrauenswürdiges Gerät entfernt: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Kontosicherheit"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Gerät zur Authentifizierung"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Aufforderung zur Aktivierung der Zwei-Faktor-Authentifizierung für Ihr Odoo-"
|
||||
"Konto"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Einladung zur Verwendung der Zwei-Faktor-Authentifizierung für folgende(n) "
|
||||
"Benutzer gesendet: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Zur Nutzung von 2FA einladen"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Einladung zur Verwendung der Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Konfiguration der Zwei-Faktor-Authentifizierung öffnen"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Sicherheitsupdate: 2FA geändert"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Sicherheitsupdate: 2FA deaktiviert"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Sicherheitsupdate: Gerät hinzugefügt"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Sicherheitsupdate: Gerät hinzugefügt"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Einstellungen: 2FA-Einladung"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto aktiviert"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto deaktiviert"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "die Aktivierung der Zwei-Faktoren-Authentifizierung"
|
187
i18n/es.po
Normal file
187
i18n/es.po
Normal file
@ -0,0 +1,187 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Estimado/a <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> pidió que activara la autenticación de dos pasos para proteger su cuenta.<br><br>\n"
|
||||
" La autenticación de dos pasos (\"A2P\") es un sistema de dobe autenticación.\n"
|
||||
" El primer paso se hace con su contraseña y el segundo con un código que obtendrá de una aplicación móvil especializada.\n"
|
||||
" Las aplicaciones populares incluyen Authy, Google Authenticator o Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activar mi autenticación de dos pasos\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Considere</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Se acaba de agregar un dispositivo de confianza a su cuenta: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Se acaba de eliminar un dispositivo de confianza de su cuenta: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Seguridad de la cuenta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticación"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Invitación a activar la autenticación de dos pasos en su cuenta de Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Se envió la invitación a activar la autenticación de dos pasos a los "
|
||||
"siguientes usuarios: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Invitar a usar la A2P"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Invitar a usar la autenticación de 2 pasos"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Abrir la configuración de la identificación de 2 pasos"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Actualización de seguridad: A2F activada"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Actualización de seguridad: A2F desactivada "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Actualización de seguridad: dispositivo agregado"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Actualización de seguridad: dispositivo eliminado"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Configuración: invitación 2Fa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "La autenticación de dos factores ha sido activada en su cuenta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "La autenticación de dos factores ha sido desactivada en su cuenta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "activando la autenticación de dos factores"
|
184
i18n/es_419.po
Normal file
184
i18n/es_419.po
Normal file
@ -0,0 +1,184 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Apreciable <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> solicitó que active la autenticación en dos factores para proteger su cuenta.<br><br>\n"
|
||||
" La autenticación de dos factores (\"A2F\") es un sistema de doble autenticación.\n"
|
||||
" El primer factor se hace con su contraseña y el segundo con un código que obtiene de una aplicación móvil. \n"
|
||||
" Las más populares incluyen Authy, Google Authenticator e Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activar mi autenticación de dos factores.\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Considere</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "Se agregó un dispositivo de confianza a su cuenta: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "Se eliminó un dispositivo de confianza de su cuenta: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Seguridad de la cuenta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticación"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Invitación a activar la autenticación de dos factores en su cuenta de Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Se envió la invitación a activar la autenticación de dos factores a los "
|
||||
"siguientes usuarios: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Invitar a usar la A2F"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Invitar a usar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Abrir la configuración de la identificación de dos factores"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Actualización de seguridad: A2F activada"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Actualización de seguridad: A2F desactivada "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Actualización de seguridad: se agregó un dispositivo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Actualización de seguridad: se eliminó un dispositivo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Ajustes: invitación para la A2F"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "La autenticación de dos factores se activó en su cuenta "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "La autenticación de dos factores se desactivó en su cuenta "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "activando la autenticación de dos factores"
|
167
i18n/et.po
Normal file
167
i18n/et.po
Normal file
@ -0,0 +1,167 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Anna, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2024\n"
|
||||
"Language-Team: Estonian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Arvesta</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Konto andmed"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentimisseade"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
166
i18n/fa.po
Normal file
166
i18n/fa.po
Normal file
@ -0,0 +1,166 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Persian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "امنیت حساب"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
186
i18n/fi.po
Normal file
186
i18n/fi.po
Normal file
@ -0,0 +1,186 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Hyvä <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> pyysi sinua aktivoimaan kaksivaiheisen tunnistuksen (MFA) tilisi suojaamiseksi.<br><br>\n"
|
||||
" Kaksivaiheinen tunnistus (\"2FA tai MFA\") on kaksinkertaisen todennuksen järjestelmä.\n"
|
||||
" Ensimmäinen tehdään salasanallasi ja toinen koodilla, jonka saat erityisestä mobiilisovelluksesta.\n"
|
||||
" Suosittuja ovat Authy, Google Authenticator tai Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Aktivoi kaksivaiheinen tunnistus\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Harkitse</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "Tilillesi on juuri lisätty luotettu laite: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "Luotettu laite on juuri poistettu tililtäsi: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Tilin tietoturva"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Vahvistuslaite"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Kutsu kaksivaiheisen tunnistautumisen käyttöönottoon Odoo-tililläsi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kutsu kaksivaiheisen tunnistautumisen käyttöönottoon lähetettiin seuraaville"
|
||||
" käyttäjille: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Kutsu käyttämään kaksivaiheista tunnistautumista"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Kutsu käyttämään kaksivaiheista tunnistautumista"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Avaa kaksivaiheisen tunnistautumisen asetukset"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Tietoturvapäivitys: 2FA aktivoitu"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Tietoturvapäivitys: 2FA poistettu käytöstä"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Tietoturvapäivitys: laite lisätty"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Tietoturvapäivitys: laite poistettu"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Asetukset: Kaksivaiheinen tunnistautuminen"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Kaksivaiheinen tunnistus on aktivoitu tilillesi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Kaksivaiheinen tunnistus on poistettu tililtäsi käytöstä"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "otetaan käyttöön kaksivaiheinen tunnistus"
|
188
i18n/fr.po
Normal file
188
i18n/fr.po
Normal file
@ -0,0 +1,188 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Bonjour <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> vous a demandé d'activer l'authentification à deux facteurs pour protéger votre compte.<br><br>\n"
|
||||
" L'authentification à deux facteurs (\"2FA\") est un système de double authentification.\n"
|
||||
" La première se fait avec votre mot de passe et la deuxième avec un code que vous recevez depuis une application mobile dédiée.\n"
|
||||
" Les plus populaires sont Authy, Google Authenticator ou Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activer mon authentification à deux facteurs\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Envisagez</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Un périphérique de confiance vient d'être ajouté à votre compte : "
|
||||
"%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Un périphérique de confiance vient d'être supprimé de votre compte : "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Sécurité du compte"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Appareil d'authentification"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Invitation à activer l'authentification à deux facteurs sur votre compte "
|
||||
"Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Invitation à utiliser l'authentification à deux facteurs envoyée pour le(s) "
|
||||
"utilisateur(s) suivant(s) : %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Inviter à l'utiliser la 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Inviter à utiliser l'authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Ouvrir la configuration de l'authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Mise à jour de sécurité : 2FA activée"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Mise à jour de sécurité : 2FA désactivée"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Mise à jour de sécurité : Périphérique ajouté"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Mise à jour de sécurité : Périphérique supprimé"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Paramètres : Invitation 2Fa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "L'authentification à deux facteurs a été activé sur votre compte"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "L'authentification à deux factures a été désactivé sur votre compte"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "d'activer l'authentification à deux facteurs"
|
166
i18n/he.po
Normal file
166
i18n/he.po
Normal file
@ -0,0 +1,166 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "אבטחת חשבון"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
166
i18n/hu.po
Normal file
166
i18n/hu.po
Normal file
@ -0,0 +1,166 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# A . <tiboreu@protonmail.com>, 2023
|
||||
# Tamás Dombos, 2023
|
||||
# krnkris, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: krnkris, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Jelszó kezelése"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Hitelesítő eszköz"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
185
i18n/id.po
Normal file
185
i18n/id.po
Normal file
@ -0,0 +1,185 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Yth <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> meminta Anda untuk menaktifkan autentikasi dua faktor untuk melindungi akun Anda.<br><br>\n"
|
||||
" Autentikasi Dua Faktor (\"2FA\") adalah sistem autentikasi ganda.\n"
|
||||
" Autentikasi pertamya dilakukan dengan password Anda dan yang kedua dilakukan dengan kode yang Anda dapatkan dari aplikasi mobile terdedikasi.\n"
|
||||
" App yang populer termasuk Authy, Google Authenticator atau Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Aktifkan Autentikasi Dua Faktor saya\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Pertimbangkan</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Perangkat terpercaya baru saja ditambahkan ke akun Anda: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Perangkat terpercaya baru saja dihapus dari akun Anda: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Keamanan Akun"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Perangkat Autentikasi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Undangan untuk mengaktifkan autentikasi dua-faktor pada akun Odoo Anda"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Undangan untuk menggunakan autentikasi dua-faktor dikirim ke user-user "
|
||||
"berikut: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Undang untuk menggunakan 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Undang untuk menggunakan autentikasi dua-faktor"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Buka konfigurasi autentikasi dua-faktor"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Update Keamanan: 2FA Diaktifkan"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Update Keamanan: 2FA Dinonaktifkan"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Update Keamanan: Perangkat Ditambahkan"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Update Keamanan: Perangkat Dihapus"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Pengaturan: Undangan 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Autentikasi dua-faktor telah diaktifkan pada akun Anda"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Autentikasi dua-faktor telah dinonaktifkan pada akun Anda"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "mengaktifkan Autentikasi Dua-faktor"
|
187
i18n/it.po
Normal file
187
i18n/it.po
Normal file
@ -0,0 +1,187 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Gentile <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> ha chiesto di attivare l'autenticazione a due fattori per proteggere l'account.<br><br>\n"
|
||||
" L'autenticazione a due fattori (\"2FA\") è un sistema di doppia autenticazione.\n"
|
||||
" La prima viene effettuata attraverso la password mentre la seconda con un condice che si ottiene da un'app specifica per dispositivi mobili.\n"
|
||||
" Tra le più famose ci sono Authy, Google Authenticator o Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Attiva l'autenticazione a due fattori\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Considera</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"È stato appena aggiunto un dispositivo sicuro al tuo account: "
|
||||
"%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"È stato appena rimosso un dispositivo sicuro dal tuo account: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Sicurezza account"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo di autenticazione"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Invito ad attivare l'autenticazione a due fattori sul tuo account Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Invito ad usare l'autenticazione a due fattori inviato per i seguenti "
|
||||
"utenti: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Invito ad usare 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Invito a usare l'autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Aprire la configurazione dell'autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Aggiornamento sicurezza: 2FA attivata"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Aggiornamento sicurezza: 2FA disattivata"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Aggiornamento della sicurezza: dispositivo aggiunto"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Aggiornamento della sicurezza: dispositivo rimosso"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Impostazioni: Invito 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "L'autenticazione a due fattori è stata attivata per il tuo account"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "L'autenticazione a due fattori è stata disattivata per il tuo account"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "attivando l'autenticazione a due fattori"
|
180
i18n/ja.po
Normal file
180
i18n/ja.po
Normal file
@ -0,0 +1,180 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <t t-out=\"object.partner_id.name or ''\"></t>様<br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> お客様のアカウント保護のために二段階承認がリクエストされました。<br><br>\n"
|
||||
" 二段階承認 (\"2FA\") は二重の承認システムです。\n"
|
||||
" 1つ目はパスワードで、2つ目は専用のモバイルアプリから取得したコードで行います。\n"
|
||||
" よく利用されるAuthy、Google Authenticator、Microsoft Authenticatorなどがあります。\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" 二段階承認を有効にする\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>考慮する</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "信頼できるデバイスが1つアカウントに追加されました: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "信頼できるデバイスがアカウントから削除されました: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "アカウントセキュリティ"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "承認デバイス"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Odooアカウントの二段階承認を有効化する招待状"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr "次のユーザへ2要素認証使用の招待が送付されました: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "2要素認証の使用を招待"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "2要素認証の使用を招待"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "2要素承認設定を開く"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "セキュリティ更新: 2FA有効化済"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "セキュリティ更新: 2FAが無効です"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "セキュリティ更新: デバイスが追加されました"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "セキュリティ更新: デバイスが削除されました"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "設定: 2Fa 招待状"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "アカウントで2要素承認が有効化されました"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "アカウントで2要素承認が無効化されました"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "2要素承認を有効化しています"
|
180
i18n/ko.po
Normal file
180
i18n/ko.po
Normal file
@ -0,0 +1,180 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" 안녕하세요, <t t-out=\"object.partner_id.name or ''\"></t>님.<br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t>님께서 귀하의 계정 보호를 위해 2단계 인증을 활성화하도록 요청하셨습니다.<br><br>\n"
|
||||
" 2단계 인증 절차(\"2FA\")는 이중 확인 절차를 통해 사용자 본인만이 계정에 접근할 수 있도록 하는 인증 시스템입니다..\n"
|
||||
" 아이디와 비밀번호로 로그인한 후, 사전에 등록했던 모바일 앱을 통해 받은 코드를 입력하면 추가 인증이 이루어집니다.\n"
|
||||
" 인증 앱으로는 Authy, Google Authenticator 또는 Microsoft Authenticator가 사용되고 있습니다.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" 2단계 인증 활성화하기\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>계정을 안전하게 보호하기 위해 2단계 인증을 사용해 보세요.</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "계정에 신뢰할 수 있는 장치가 추가되었습니다: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "계정에서 신뢰할 수 있는 장치가 제거되었습니다: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "계정 보안"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "인증 장치"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Odoo 계정에서 2단계 인증을 활성화하도록 초대합니다"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr "다음 사용자에 대해 2단계 인증 사용 초대를 보냈습니다: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "2FA 사용 초대"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "2단계 인증 설정 초대"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "2단계 인증 환경설정 열기"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "보안 업데이트: 2FA 활성화됨"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "보안 업데이트: 2FA 비활성화됨"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "보안 업데이트: 장치 추가됨"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "보안 업데이트: 장치 제거됨"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "설정: 2Fa 초대"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "계정에서 2단계 인증이 활성화되었습니다 "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "계정에서 2단계 인증이 비활성화되었습니다"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "2단계 인증 설정하기"
|
166
i18n/lt.po
Normal file
166
i18n/lt.po
Normal file
@ -0,0 +1,166 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2023
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Monika Raciunaite <monika.raciunaite@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Paskyros sauga"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Vardas, Pavardė"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
164
i18n/lv.po
Normal file
164
i18n/lv.po
Normal file
@ -0,0 +1,164 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Konta drošība"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nosaukums"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
186
i18n/nl.po
Normal file
186
i18n/nl.po
Normal file
@ -0,0 +1,186 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Beste <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> heeft je verzocht om de tweestapsverificatie te activeren om je account te beschermen.<br><br>\n"
|
||||
" Tweestapsverificatie (\"2FA\") is een systeem van dubbele authenticatie.\n"
|
||||
" De eerste doe je met je wachtwoord en de tweede met een code die je krijgt van een speciale mobiele app.\n"
|
||||
" Populaire apps zijn onder andere Authy, Google Authenticator of Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activeer mijn tweestapsverificatie\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Overweeg</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Er is zojuist een vertrouwd apparaat toegevoegd aan je "
|
||||
"account:%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Er is zojuist een vertrouwd apparaat verwijderd van je "
|
||||
"account:%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Accountveiligheid"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Verificatieapparaat"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Uitnodiging om tweestapsverificatie op je Odoo-account te activeren"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Uitnodiging om tweestapsverificatie te gebruiken voor de volgende "
|
||||
"gebruiker(s): %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Nodig uit om 2FA te gebruiken"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Uitnodigen om tweestapsverificatie te gebruiken"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Configuratie voor tweestapsverificatie openen"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Veiligheidsupdate: 2FA ingeschakeld"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Veiligheidsupdate: 2FA uitgeschakeld"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Veiligheidsupdate: Apparaat toegevoegd"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Veiligheidsupdate: Apparaat verwijderd"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Instellingen: Uitnodiging tweestapsverificatie"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "De tweestapsverificatie is ingeschakeld op je account"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "De tweestapsverificatie is uitgeschakeld op je account"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "de tweestapsverificatie in te schakelen"
|
167
i18n/pl.po
Normal file
167
i18n/pl.po
Normal file
@ -0,0 +1,167 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Bezpieczeństwo konta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Urządzenie uwierzytelniające"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Zaproszenie do aktywacji uwierzytelniania dwuetapowego do Twojego konta Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Zaproszenie do użycia uwierzytelniania dwuetapowego wysłane do następujących"
|
||||
" użytkowników: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Zaproś do użycia 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Zaproś do użycia uwierzytelniania dwuetapowego"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Otwórz konfigurację uwierzytelniania dwuetapowego"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Ustawienia: zaproszenie 2Fa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
164
i18n/pt.po
Normal file
164
i18n/pt.po
Normal file
@ -0,0 +1,164 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Segurança da Conta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
182
i18n/pt_BR.po
Normal file
182
i18n/pt_BR.po
Normal file
@ -0,0 +1,182 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Olá <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> solicitou que você ative autenticação de dois fatores para proteger a sua conta.<br><br>\n"
|
||||
" Autenticação de dois fatores (“2FA”) é um sistema de autenticação dupla.\n"
|
||||
" O primeiro fator é a sua senha e o segundo fator é realizado com um código que você recebe de um aplicativo dedicado.\n"
|
||||
" Alguns aplicativos populares incluem Authy, Google Authenticator ou o Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Ativar minha autenticação de dois fatores\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Considere</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "Um dispositivo confiável foi adicionado à sua conta: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "Um dispositivo confiável foi removido da sua conta: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Segurança da conta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticação"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Convite para ativar autenticação de dois fatores na sua conta Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Convite para ativar autenticação de dois fatores enviado para os seguintes "
|
||||
"usuários: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Convite para utilizar 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Convide para utilizar a autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Abrir configurações da autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Atualização de segurança: 2FA ativada"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Atualização de segurança: 2FA desativada"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Atualização de segurança: dispositivo adicionado"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Atualização de segurança: dispositivo removido"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Definições: convite para 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "A autenticação dois fatores foi ativada na sua conta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "A autenticação dois fatores foi desativada na sua conta"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "ativar a autenticação de dois fatores"
|
189
i18n/ru.po
Normal file
189
i18n/ru.po
Normal file
@ -0,0 +1,189 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Уважаемый <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> просит вас активировать двухфакторную аутентификацию для защиты вашей учетной записи.<br><br>\n"
|
||||
" Двухфакторная аутентификация (\"2FA\") - это система двойной аутентификации.\n"
|
||||
" Первая осуществляется с помощью вашего пароля, а вторая - с помощью кода, который вы получаете из специального мобильного приложения.\n"
|
||||
" Среди популярных - Authy, Google Authenticator или Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Активируйте мою двухфакторную аутентификацию\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Рассмотрите</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"В вашу учетную запись только что было добавлено доверенное устройство: "
|
||||
"%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Только что с вашей учетной записи было удалено доверенное устройство: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Безопасность учетной записи"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Устройство аутентификации"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Приглашение активировать двухфакторную аутентификацию на вашей учетной "
|
||||
"записи Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Приглашение использовать двухфакторную аутентификацию отправлено для "
|
||||
"следующих пользователей: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Приглашение к использованию 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Предложите использовать двухфакторную аутентификацию"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Открытая конфигурация двухфакторной аутентификации"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Обновление системы безопасности: 2FA активирована"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Обновление системы безопасности: 2FA деактивирована"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Обновление системы безопасности: добавлено устройство"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Обновление системы безопасности: устройство удалено"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Параметры: 2Fa Приглашение"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "На вашей учетной записи активирована двухфакторная аутентификация"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Двухфакторная аутентификация была отключена на вашей учетной записи"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "активация двухфакторной аутентификации"
|
164
i18n/sk.po
Normal file
164
i18n/sk.po
Normal file
@ -0,0 +1,164 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Zabezpečenie účtu"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Pozvať na použitie 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Meno"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
166
i18n/sl.po
Normal file
166
i18n/sl.po
Normal file
@ -0,0 +1,166 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Grega Vavtar <grega@hbs.si>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Grega Vavtar <grega@hbs.si>, 2024\n"
|
||||
"Language-Team: Slovenian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Varnost računa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
186
i18n/sr.po
Normal file
186
i18n/sr.po
Normal file
@ -0,0 +1,186 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Poštovani <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> zatražio da aktivirate dvofaktornu autentifikaciju da biste zaštitili svoj nalog.<br><br>\n"
|
||||
" Dvofaktorska autentifikacija („2FA“) je sistem dvostruke autentifikacije.\n"
|
||||
" Prvi se radi pomoću vaše lozinke, a drugi kodom koji dobijate iz namenske mobilne aplikacije.\n"
|
||||
" Popularni uključuju Authi, Google Authenticator ili Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Aktivirajte moju dvofaktorsku autentifikaciju\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Razmotri</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "Dodat je pouzdan uređaj na vaš nalog: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Jedan pouzdan uređaj je upravo uklonjen sa vašeg naloga: %(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Bezbednost naloga"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentifikacioni uređaj"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Poziv za aktiviranje dvofaktorske autentifikacije na vašem Odoo nalogu"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Poziv za korišćenje dvofaktorske autentifikacije je poslat za sledeće "
|
||||
"korisnike: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Pozovite da koristite 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Pozovite da koristite dvofaktornu autentifikaciju"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Otvorena dvofaktorska konfiguracija autentifikacije"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Bezbednosno ažuriranje: 2FA aktivirana"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Sigurnosno ažuriranje: 2FA deaktivirana"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Bezbednosno ažuriranje: uređaj dodat"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Bezbednosno ažuriranje: uređaj uklonjen"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Podešavanja: 2FA pozivnice"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Dvofaktorska autentifikacija je aktivirana na vašem nalogu."
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Dvofaktorska autentifikacija je deaktivirana na vašem nalogu."
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "aktiviranje Dvofaktorske autentifikacije"
|
165
i18n/sv.po
Normal file
165
i18n/sv.po
Normal file
@ -0,0 +1,165 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Kontosäkerhet"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
182
i18n/th.po
Normal file
182
i18n/th.po
Normal file
@ -0,0 +1,182 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Thai (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" เรียน <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> ขอให้คุณเปิดใช้งานการรับรองความถูกต้องด้วย two-factor เพื่อปกป้องบัญชีของคุณ<br><br>\n"
|
||||
" การตรวจสอบสิทธิ์แบบ two-factor (\"2FA\") คือระบบการตรวจสอบสิทธิ์แบบสองชั้น\n"
|
||||
" อันแรกใช้รหัสผ่านของคุณและอันที่สองใช้รหัสที่คุณได้รับจากแอปมือถือโดยเฉพาะ\n"
|
||||
" แอปยอดนิยม ได้แก่ Authy, Google Authenticator หรือ Microsoft Authenticator\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" เปิดใช้งานการตรวจสอบสิทธิ์แบบ two-factor ของฉัน\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>พิจารณา</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "อุปกรณ์ที่เชื่อถือได้ถูกเพิ่มลงในบัญชีของคุณแล้ว:%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "อุปกรณ์ที่เชื่อถือได้ถูกลบออกจากบัญชีของคุณแล้ว:%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "ความปลอดภัยของบัญชี"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "อุปกรณ์ตรวจสอบสิทธิ์"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"คำเชิญให้เปิดใช้งานการรับรองความถูกต้องแบบ two-factor ในบัญชี Odoo ของคุณ"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"คำเชิญให้ใช้การรับรองความถูกต้องแบบ two-factor ที่ส่งถึงผู้ใช้ต่อไปนี้:%s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "คำเชิญให้ใช้งาน 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "เชิญให้ใช้การรับรองความถูกต้องด้วยแบบ two-factor "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "เปิดการกำหนดค่าการรับรองความถูกต้องแบบ two-factor "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "อัปเดตความปลอดภัย: เปิดใช้งาน 2FA แล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "อัปเดตความปลอดภัย: ปิดใช้งาน 2FA แล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "อัปเดตความปลอดภัย: เพิ่มอุปกรณ์แล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "อัปเดตความปลอดภัย: อุปกรณ์ถูกลบออกแล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "การตั้งค่า: คำเชิญ 2Fa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "เปิดใช้งานการรับรองความถูกต้องด้วย Two-factor ในบัญชีของคุณแล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "ปิดใช้งานการรับรองความถูกต้องด้วย Two-factor ในบัญชีของคุณแล้ว"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "การเปิดใช้งานการรับรองความถูกต้องด้วย Two-factor"
|
169
i18n/tr.po
Normal file
169
i18n/tr.po
Normal file
@ -0,0 +1,169 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: abc Def <hdogan1974@gmail.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Hesap Güvenliği"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Kimlik Doğrulama Cihazı"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Odoo hesabınızda iki faktörlü kimlik doğrulamayı etkinleştirme daveti"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Aşağıdaki kullanıcı(lar) için gönderilen iki faktörlü kimlik doğrulamayı "
|
||||
"kullanma daveti: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "2FA'yı kullanmaya davet edin"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "İki faktörlü kimlik doğrulamayı kullanmaya davet edin"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "İki faktörlü kimlik doğrulama yapılandırmasını açın"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Ayarlar: 2Fa Davetiyesi"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr ""
|
188
i18n/uk.po
Normal file
188
i18n/uk.po
Normal file
@ -0,0 +1,188 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Шановний(а) <t t-out=\"object.partner_id.name or ''\"/><br/><br/>\n"
|
||||
" <t t-out=\"user.name or ''\"/> попросив вас активувати двофакторну автентифікацію для захисту вашого облікового запису.<br/><br/>\n"
|
||||
" Двофакторна аутентифікація («2FA») — це система подвійної аутентифікації.\n"
|
||||
" Перший виконується за допомогою вашого пароля, а другий — за допомогою коду, який ви отримуєте зі спеціального мобільного додатка.\n"
|
||||
" Серед популярних — Authy, Google Authenticator або Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Активувати мою двофакторну аутентифікацію\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Розглянути</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Надійний пристрій щойно додано до вашого облікового запису: %(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Надійний пристрій щойно видалено з вашого облікового запису: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Безпека облікового запису"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Пристрій аутентифікації"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr ""
|
||||
"Запрошення активувати двофакторну аутентифікацію у вашому обліковому записі "
|
||||
"Odoo"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Запрошення використовувати двофакторну автентифікацію надіслано для таких "
|
||||
"користувачів: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Запросити, щоб використовувати 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Запросити, щоб використовувати двофакторну аутентифікацію"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Ім'я"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Відкрита конфігурація двофакторної аутентифікації"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Оновлення безпеки: 2FA Активовано"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Оновлення безпеки: 2FA деактивовано"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Оновлення безпеки: Пристрій додано"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Оновлення безпеки: Пристрій вилучено"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Налаштування: Запрошення 2Fa"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Двофакторну аутентифікацію активовано на вашому обліковому записі"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Двофакторну аутентифікацію деактивовано на вашому обліковому записі"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "активація двофакторної аутентифікації"
|
185
i18n/vi.po
Normal file
185
i18n/vi.po
Normal file
@ -0,0 +1,185 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Xin chào <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> đã yêu cầu bạn kích hoạt xác thực hai yếu tố để bảo vệ tài khoản của bạn.<br><br>\n"
|
||||
" Xác thực hai yếu tố (\"2FA\") là một hệ thống xác thực kép.\n"
|
||||
" Bước đầu tiên được thực hiện với mật khẩu của bạn và bước thứ hai với mã bạn nhận được từ một ứng dụng dành riêng cho thiết bị di động.\n"
|
||||
" Các ứng dụng phổ biến bao gồm Authy, Google Authenticator hoặc Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Kích hoạt xác thực hai yếu tố của tôi\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>Cân nhắc</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr ""
|
||||
"Một thiết bị đáng tin cậy vừa được thêm vào tài khoản của bạn: "
|
||||
"%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr ""
|
||||
"Một thiết bị đáng tin cậy vừa được gỡ khỏi tài khoản của bạn: "
|
||||
"%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "Bảo mật tài khoản"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Thiết bị xác thực"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "Lời mời kích hoạt xác thực hai yếu tố trên tài khoản Odoo của bạn"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Lời mời sử dụng xác thực hai yếu tố đã gửi đến (những) người dùng sau: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "Mời sử dụng 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "Mời sử dụng xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "Mở cấu hình xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "Cập nhật bảo mật: Đã kích hoạt 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "Cập nhật bảo mật: Đã huỷ kích hoạt 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "Cập nhật bảo mật: Đã thêm thiết bị"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "Cập nhật bảo mật: Đã gỡ thiết bị"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "Cài đặt: Lời mời 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "Xác thực hai yếu tố đã được kích hoạt cho tài khoản của bạn"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "Xác thực hai yếu tố đã được huỷ kích hoạt cho tài khoản của bạn"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "kích hoạt xác thực hai yếu tố"
|
180
i18n/zh_CN.po
Normal file
180
i18n/zh_CN.po
Normal file
@ -0,0 +1,180 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" 您好! <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> 要求您激活双因素身份验证以保护您的账户。<br><br>\n"
|
||||
" 双因素验证(\"2FA\")是一种双重验证系统。\n"
|
||||
" 第一种是核对个人密码;第二种是利用手机应用程序,获取专用代码。\n"
|
||||
" 常用的专用验证程式包括:Authy、Google Authenticator 以及 Microsoft Authenticator。\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" 激活我的双重身份验证\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>考虑</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "您的账户中刚刚添加了一台可信设备:%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "您的帐户中刚刚移除了一台受信任设备:%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "帐户安全"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "认证设备"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "邀请在您的Odoo帐户上激活two-factor双因素身份验证"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr "为以下用户发送了使用双因素身份验证的邀请: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "邀请使用 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "邀请使用双重身份验证"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "打开双因素身份验证配置"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "安全更新:2FA 已激活"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "安全更新:2FA 已停用"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "安全更新:已添加设备"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "安全更新:已移除设备"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "设置:2Fa邀请"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "您的账户已启用双重身份验证"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "您账户的双重验证已停用"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "激活双重身份验证"
|
181
i18n/zh_TW.po
Normal file
181
i18n/zh_TW.po
Normal file
@ -0,0 +1,181 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp_mail
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.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_mail
|
||||
#: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite
|
||||
msgid ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" Dear <t t-out=\"object.partner_id.name or ''\"></t><br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> requested you activate two-factor authentication to protect your account.<br><br>\n"
|
||||
" Two-factor Authentication (\"2FA\") is a system of double authentication.\n"
|
||||
" The first one is done with your password and the second one with a code you get from a dedicated mobile app.\n"
|
||||
" Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" Activate my two-factor Authentication\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"<div style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
|
||||
" <t t-out=\"object.partner_id.name or ''\"></t> 你好!<br><br>\n"
|
||||
" <t t-out=\"user.name or ''\"></t> 要求你啟用雙重要素身份驗證,以保護你的帳戶。<br><br>\n"
|
||||
" 雙重要素身份驗證(two-factor authentication,簡稱 2FA)是一種對身份進行雙重驗證的系統。\n"
|
||||
" 第一重驗證是核對個人密碼;第二重驗證是利用你指定的流動裝置上專用的應用程式,產生臨時代碼,以驗證身份。\n"
|
||||
" 目前較流行的專用驗證程式包括:Authy、Google Authenticator 以及 Microsoft Authenticator。\n"
|
||||
"\n"
|
||||
" <p style=\"margin: 16px 0px 16px 0px; text-align: center;\">\n"
|
||||
" <a t-att-href=\"object.get_totp_invite_url()\" style=\"background-color:#875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;\">\n"
|
||||
" 啟用雙重驗證\n"
|
||||
" </a>\n"
|
||||
" </p>\n"
|
||||
" </p>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "<span>Consider</span>"
|
||||
msgstr "<span>考慮</span>"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "A trusted device has just been added to your account: %(device_name)s"
|
||||
msgstr "您的賬戶中剛剛添加了一台可信設備:%(device_name)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A trusted device has just been removed from your account: %(device_names)s"
|
||||
msgstr "您的帳戶中剛剛移除了一台受信任設備:%(device_names)s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Account Security"
|
||||
msgstr "科目編號安全"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "認證設備"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,subject:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Invitation to activate two-factor authentication on your Odoo account"
|
||||
msgstr "邀請在您的Odoo帳戶上激活雙因素身份驗證"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invitation to use two-factor authentication sent for the following user(s): "
|
||||
"%s"
|
||||
msgstr "為以下用戶發送了使用雙因素身份驗證的邀請: %s"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.view_users_form
|
||||
msgid "Invite to use 2FA"
|
||||
msgstr "邀請使用 2FA"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_invite_totp
|
||||
msgid "Invite to use two-factor authentication"
|
||||
msgstr "邀請使用雙重身份驗證"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.res_users_view_form
|
||||
msgid "Name"
|
||||
msgstr "名稱"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.actions.server,name:auth_totp_mail.action_activate_two_factor_authentication
|
||||
msgid "Open two-factor authentication configuration"
|
||||
msgstr "打開雙因素身份驗證配置"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Activated"
|
||||
msgstr "安全更新:2FA 已激活"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: 2FA Deactivated"
|
||||
msgstr "安全更新:2FA 已停用"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Added"
|
||||
msgstr "安全更新:已添加設備"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/auth_totp_device.py:0
|
||||
#, python-format
|
||||
msgid "Security Update: Device Removed"
|
||||
msgstr "安全更新:已移除設備"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:mail.template,name:auth_totp_mail.mail_template_totp_invite
|
||||
msgid "Settings: 2Fa Invitation"
|
||||
msgstr "設置:2FA邀請"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been activated on your account"
|
||||
msgstr "您的賬戶已啟用雙重身份驗證"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp_mail/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication has been deactivated on your account"
|
||||
msgstr "您賬戶的雙重驗證已停用"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model:ir.model,name:auth_totp_mail.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: auth_totp_mail
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp_mail.account_security_setting_update
|
||||
msgid "activating Two-factor Authentication"
|
||||
msgstr "激活雙重身份驗證"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import auth_totp_device
|
||||
from . import res_users
|
47
models/auth_totp_device.py
Normal file
47
models/auth_totp_device.py
Normal file
@ -0,0 +1,47 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, models
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
class AuthTotpDevice(models.Model):
|
||||
_inherit = "auth_totp.device"
|
||||
|
||||
def unlink(self):
|
||||
""" Notify users when trusted devices are removed from their account. """
|
||||
removed_devices_by_user = self._classify_by_user()
|
||||
for user, removed_devices in removed_devices_by_user.items():
|
||||
user._notify_security_setting_update(
|
||||
_("Security Update: Device Removed"),
|
||||
_(
|
||||
"A trusted device has just been removed from your account: %(device_names)s",
|
||||
device_names=', '.join([device.name for device in removed_devices])
|
||||
),
|
||||
)
|
||||
|
||||
return super().unlink()
|
||||
|
||||
def _generate(self, scope, name):
|
||||
""" Notify users when trusted devices are added onto their account.
|
||||
We override this method instead of 'create' as those records are inserted directly into the
|
||||
database using raw SQL. """
|
||||
|
||||
res = super()._generate(scope, name)
|
||||
|
||||
self.env.user._notify_security_setting_update(
|
||||
_("Security Update: Device Added"),
|
||||
_(
|
||||
"A trusted device has just been added to your account: %(device_name)s",
|
||||
device_name=name
|
||||
),
|
||||
)
|
||||
|
||||
return res
|
||||
|
||||
def _classify_by_user(self):
|
||||
devices_by_user = defaultdict(lambda: self.env['auth_totp.device'])
|
||||
for device in self:
|
||||
devices_by_user[device.user_id] |= device
|
||||
|
||||
return devices_by_user
|
74
models/res_users.py
Normal file
74
models/res_users.py
Normal file
@ -0,0 +1,74 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, models
|
||||
|
||||
|
||||
class Users(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
|
||||
if 'totp_secret' in vals:
|
||||
if vals.get('totp_secret'):
|
||||
self._notify_security_setting_update(
|
||||
_("Security Update: 2FA Activated"),
|
||||
_("Two-factor authentication has been activated on your account"),
|
||||
suggest_2fa=False,
|
||||
)
|
||||
else:
|
||||
self._notify_security_setting_update(
|
||||
_("Security Update: 2FA Deactivated"),
|
||||
_("Two-factor authentication has been deactivated on your account"),
|
||||
suggest_2fa=False,
|
||||
)
|
||||
|
||||
return res
|
||||
|
||||
def _notify_security_setting_update_prepare_values(self, content, suggest_2fa=True, **kwargs):
|
||||
"""" Prepare rendering values for the 'mail.account_security_setting_update' qweb template
|
||||
|
||||
:param bool suggest_2fa:
|
||||
Whether or not to suggest the end-user to turn on 2FA authentication in the email sent.
|
||||
It will only suggest to turn on 2FA if not already turned on on the user's account. """
|
||||
|
||||
values = super()._notify_security_setting_update_prepare_values(content, **kwargs)
|
||||
values['suggest_2fa'] = suggest_2fa and not self.totp_enabled
|
||||
return values
|
||||
|
||||
def action_open_my_account_settings(self):
|
||||
action = {
|
||||
"name": _("Account Security"),
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "res.users",
|
||||
"views": [[self.env.ref('auth_totp_mail.res_users_view_form').id, "form"]],
|
||||
"res_id": self.id,
|
||||
}
|
||||
return action
|
||||
|
||||
def get_totp_invite_url(self):
|
||||
return '/web#action=auth_totp_mail.action_activate_two_factor_authentication'
|
||||
|
||||
def action_totp_invite(self):
|
||||
invite_template = self.env.ref('auth_totp_mail.mail_template_totp_invite')
|
||||
users_to_invite = self.sudo().filtered(lambda user: not user.totp_secret)
|
||||
for user in users_to_invite:
|
||||
email_values = {
|
||||
'email_from': self.env.user.email_formatted,
|
||||
'author_id': self.env.user.partner_id.id,
|
||||
}
|
||||
invite_template.send_mail(user.id, force_send=True, email_values=email_values,
|
||||
email_layout_xmlid='mail.mail_notification_light')
|
||||
|
||||
# Display a confirmation toaster
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'type': 'info',
|
||||
'sticky': False,
|
||||
'message': _("Invitation to use two-factor authentication sent for the following user(s): %s",
|
||||
', '.join(users_to_invite.mapped('name'))),
|
||||
}
|
||||
}
|
76
static/tests/totp_flow.js
Normal file
76
static/tests/totp_flow.js
Normal file
@ -0,0 +1,76 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { stepUtils } from "@web_tour/tour_service/tour_utils";
|
||||
|
||||
function openAccountSettingsTab() {
|
||||
return [{
|
||||
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"]'));
|
||||
}
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
registry.category("web_tour.tours").add('totp_admin_self_invite', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
steps: () => [stepUtils.showAppsMenuItem(), ...openAccountSettingsTab(), {
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(admin)",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, {
|
||||
content: "check that user cannot invite themselves to use 2FA.",
|
||||
trigger: "body",
|
||||
run: function () {
|
||||
const inviteBtn = $('button:contains(Invite to use 2FA)')[0];
|
||||
if (!inviteBtn) {
|
||||
$('body').addClass('CannotInviteYourself');
|
||||
}
|
||||
}
|
||||
}, {
|
||||
content: "check that user cannot invite themself.",
|
||||
trigger: "body.CannotInviteYourself",
|
||||
isCheck: true,
|
||||
}]});
|
||||
|
||||
registry.category("web_tour.tours").add('totp_admin_invite', {
|
||||
test: true,
|
||||
url: '/web',
|
||||
steps: () => [stepUtils.showAppsMenuItem(), ...openAccountSettingsTab(), {
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(demo)",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, {
|
||||
content: "check that demo user can be invited to use 2FA.",
|
||||
trigger: "button:contains(Invite to use 2FA)",
|
||||
isCheck: true,
|
||||
}]});
|
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_notify_security_update_totp
|
||||
from . import test_totp
|
49
tests/test_notify_security_update_totp.py
Normal file
49
tests/test_notify_security_update_totp.py
Normal file
@ -0,0 +1,49 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.mail.tests.test_res_users import TestNotifySecurityUpdate
|
||||
from odoo.tests import users
|
||||
|
||||
|
||||
class TestNotifySecurityUpdateTotp(TestNotifySecurityUpdate):
|
||||
@users('employee')
|
||||
def test_security_update_totp_enabled_disabled(self):
|
||||
recipients = [self.env.user.email_formatted]
|
||||
with self.mock_mail_gateway():
|
||||
self.env.user.write({'totp_secret': 'test'})
|
||||
|
||||
self.assertMailMailWEmails(recipients, 'outgoing', fields_values={
|
||||
'subject': 'Security Update: 2FA Activated',
|
||||
})
|
||||
|
||||
with self.mock_mail_gateway():
|
||||
self.env.user.write({'totp_secret': False})
|
||||
|
||||
self.assertMailMailWEmails(recipients, 'outgoing', fields_values={
|
||||
'subject': 'Security Update: 2FA Deactivated',
|
||||
})
|
||||
|
||||
@users('employee')
|
||||
def test_security_update_trusted_device_added_removed(self):
|
||||
""" Make sure we notify the user when TOTP trusted devices are added/removed on his account. """
|
||||
recipients = [self.env.user.email_formatted]
|
||||
with self.mock_mail_gateway():
|
||||
self.env['auth_totp.device']._generate('trusted_device_chrome', 'Chrome on Windows')
|
||||
|
||||
self.assertMailMailWEmails(recipients, 'outgoing', fields_values={
|
||||
'subject': 'Security Update: Device Added',
|
||||
})
|
||||
|
||||
# generating a key outside of the 'auth_totp.device' model should however not notify
|
||||
with self.mock_mail_gateway():
|
||||
self.env['res.users.apikeys']._generate('new_api_key', 'New Key')
|
||||
self.assertNotSentEmail(recipients)
|
||||
|
||||
# now remove the key using the user's relationship
|
||||
with self.mock_mail_gateway():
|
||||
self.env['auth_totp.device'].flush_model()
|
||||
self.env.user.sudo(False)._revoke_all_devices()
|
||||
|
||||
self.assertMailMailWEmails(recipients, 'outgoing', fields_values={
|
||||
'subject': 'Security Update: Device Removed',
|
||||
})
|
21
tests/test_totp.py
Normal file
21
tests/test_totp.py
Normal file
@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
|
||||
from odoo.tests import tagged, loaded_demo_data
|
||||
from odoo.addons.auth_totp.tests.test_totp import TestTOTP
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestTOTPInvite(TestTOTP):
|
||||
|
||||
def test_totp_administration(self):
|
||||
# TODO: Make this work if no demo data + hr installed
|
||||
if not loaded_demo_data(self.env):
|
||||
_logger.warning("This test relies on demo data. To be rewritten independently of demo data for accurate and reliable results.")
|
||||
return
|
||||
self.start_tour('/web', 'totp_admin_invite', login='admin')
|
||||
self.start_tour('/web', 'totp_admin_self_invite', login='admin')
|
46
views/res_users_views.xml
Normal file
46
views/res_users_views.xml
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_users_form">
|
||||
<field name="name">res.users.view.form.inherit.auth.totp.mail</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="auth_totp.view_totp_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='action_totp_enable_wizard']" position="after">
|
||||
<button groups="base.group_erp_manager" invisible="id == uid"
|
||||
name="action_totp_invite" string="Invite to use 2FA" type="object" class="btn btn-secondary"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- View used when coming from "invite to use 2FA" mail -->
|
||||
<record model="ir.ui.view" id="auth_totp_mail.res_users_view_form">
|
||||
<field name="name">res.users.view.form.auth.totp.mail</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form_simple_modif"/>
|
||||
<field name="mode">primary</field>
|
||||
<field name="arch" type="xml">
|
||||
<form position="attributes">
|
||||
<attribute name='create'>0</attribute>
|
||||
<attribute name='edit'>0</attribute>
|
||||
<attribute name='delete'>0</attribute>
|
||||
</form>
|
||||
<h1 position="replace"/>
|
||||
<xpath expr="//field[@name='image_1920']" position="replace"/>
|
||||
<notebook position="replace">
|
||||
<header>
|
||||
</header>
|
||||
<sheet>$0</sheet>
|
||||
</notebook>
|
||||
<notebook position="before">
|
||||
<field name="image_1920" widget="image" class="oe_avatar" options="{'zoom': true, 'preview_image':'image_128'}"/>
|
||||
<div class="oe_title">
|
||||
<h1>
|
||||
<field name="name" placeholder="Name" required="True" readonly="context.get('from_my_profile', False)"/>
|
||||
</h1>
|
||||
</div>
|
||||
</notebook>
|
||||
<page name="preferences_page" position="replace"></page>
|
||||
<footer position="replace"/>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user