mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-22 05:52:03 +02:00
19.0 vanilla
This commit is contained in:
parent
20ddc1b4a3
commit
c0efcc53f5
1162 changed files with 125577 additions and 105287 deletions
|
|
@ -23,35 +23,14 @@ pip install odoo-bringout-oca-ocb-auth_totp
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- web
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Two-Factor Authentication (TOTP)
|
||||
- **Version**: N/A
|
||||
- **Category**: Extra Tools
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `auth_totp`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/auth_totp
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -33,5 +33,6 @@ can setup API keys to replace their main password.
|
|||
'auth_totp/static/src/**/*',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from odoo import http, _
|
||||
from odoo.exceptions import AccessDenied
|
||||
from odoo.http import request
|
||||
from odoo.addons.web.controllers import home as web_home
|
||||
|
||||
TRUSTED_DEVICE_COOKIE = 'td_id'
|
||||
TRUSTED_DEVICE_AGE = 90*86400 # 90 days expiration
|
||||
TRUSTED_DEVICE_AGE_DAYS = 90
|
||||
|
||||
|
||||
class Home(web_home.Home):
|
||||
|
|
@ -20,14 +22,14 @@ class Home(web_home.Home):
|
|||
if request.session.uid:
|
||||
return request.redirect(self._login_redirect(request.session.uid, redirect=redirect))
|
||||
|
||||
if not request.session.pre_uid:
|
||||
if not request.session.get('pre_uid'):
|
||||
return request.redirect('/web/login')
|
||||
|
||||
error = None
|
||||
|
||||
user = request.env['res.users'].browse(request.session.pre_uid)
|
||||
user = request.env['res.users'].browse(request.session['pre_uid'])
|
||||
if user and request.httprequest.method == 'GET':
|
||||
cookies = request.httprequest.cookies
|
||||
cookies = request.cookies
|
||||
key = cookies.get(TRUSTED_DEVICE_COOKIE)
|
||||
if key:
|
||||
user_match = request.env['auth_totp.device']._check_credentials_for_uid(
|
||||
|
|
@ -41,7 +43,11 @@ class Home(web_home.Home):
|
|||
elif user and request.httprequest.method == 'POST' and kwargs.get('totp_token'):
|
||||
try:
|
||||
with user._assert_can_auth(user=user.id):
|
||||
user._totp_check(int(re.sub(r'\s', '', kwargs['totp_token'])))
|
||||
credentials = {
|
||||
'type': user._mfa_type(),
|
||||
'token': int(re.sub(r'\s', '', kwargs['totp_token'])),
|
||||
}
|
||||
user._check_credentials(credentials, {'interactive': True})
|
||||
except AccessDenied as e:
|
||||
error = str(e)
|
||||
except ValueError:
|
||||
|
|
@ -56,15 +62,20 @@ class Home(web_home.Home):
|
|||
browser=request.httprequest.user_agent.browser.capitalize(),
|
||||
platform=request.httprequest.user_agent.platform.capitalize(),
|
||||
)
|
||||
geoip = request.geoip
|
||||
if geoip:
|
||||
name += " (%s, %s)" % (geoip['city'], geoip['country_name'])
|
||||
|
||||
key = request.env['auth_totp.device']._generate("browser", name)
|
||||
if request.geoip.city.name:
|
||||
name += f" ({request.geoip.city.name}, {request.geoip.country_name})"
|
||||
|
||||
trusted_device_age = request.env['auth_totp.device']._get_trusted_device_age()
|
||||
key = request.env['auth_totp.device'].sudo()._generate(
|
||||
"browser",
|
||||
name,
|
||||
datetime.now() + timedelta(seconds=trusted_device_age)
|
||||
)
|
||||
response.set_cookie(
|
||||
key=TRUSTED_DEVICE_COOKIE,
|
||||
value=key,
|
||||
max_age=TRUSTED_DEVICE_AGE,
|
||||
max_age=trusted_device_age,
|
||||
httponly=True,
|
||||
samesite='Lax'
|
||||
)
|
||||
|
|
|
|||
|
|
@ -9,6 +9,6 @@
|
|||
<field name="code">
|
||||
action = records.action_totp_disable()
|
||||
</field>
|
||||
<field name="groups_id" eval="[(4, ref('base.group_erp_manager'))]"/>
|
||||
<field name="group_ids" eval="[(4, ref('base.group_erp_manager'))]"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -1,420 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Gekanselleer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Beskrywing"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,179 +1,109 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Niyas Raphy, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s على %(platform)s "
|
||||
msgstr "%(browser)s على %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "مُعالج الضبط ثنائي العوامل "
|
||||
msgstr "مُعالج الضبط ثنائي العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "تم تشغيل المصادقة ثنائية العوامل. "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"التوثيقات \" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" اعرف المزيد "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"التوثيقات \" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" اعرف المزيد "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">هذا الحساب محمي!</span> "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">حسابك محمي!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">أو قم بتثبيت تطبيق المصادقة</span>\n"
|
||||
" <span class=\"d-none d-md-block\">قم بتثبيت تطبيق المصادقة على جهازك المحمول</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">قم بمسح الباركود أدناه عندما يُطلَب منك ذلك</span>\n"
|
||||
" <span class=\"d-block d-md-none\">قم بنسخ المفتاح أدناه عندما يُطلَب منك ذلك</span> "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">المفضلة منها تتضمن Authy، مصادقة Google، أو "
|
||||
"مصادقة Microsoft.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "أمن الحساب "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "تفعيل"
|
||||
msgstr "تم تشغيل المصادقة ثنائية العوامل."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "تمت إضافته في "
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"هل أنت متأكد؟ قد يُطلب من المستخدم إدخال رموز المصادقة ثنائية العوامل مجدداً"
|
||||
" في تلك الحسابات "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr "<span class=\"text-muted\">موصى به لمزيد من الأمان</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"هل أنت متأكد؟ قد يُطلب منك إدخال رموز المصادقة ثنائية العوامل مجدداً في تلك "
|
||||
"الحسابات "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "كود المصادقة "
|
||||
msgstr "كود المصادقة"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "جهاز المصادقة "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "ضبط تطبيق المصادقة "
|
||||
msgstr "جهاز المصادقة"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء "
|
||||
msgstr "إلغاء"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "لا يمكنك مسحه؟ "
|
||||
msgstr "لا يمكنك مسحه؟"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "اضغط على هذا الرابط لفتح تطبيق المصادقة لديك "
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "التحقق من الكود"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
|
@ -191,259 +121,366 @@ msgstr "الوصف"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "الجهاز"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "تعطيل المصادقة ثنائية العوامل "
|
||||
msgid "Disable"
|
||||
msgstr "تعطيل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "تعطيل المصادقة ثنائية العوامل "
|
||||
msgstr "تعطيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "إهمال"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "عدم السؤال مجدداً على هذا الجهاز "
|
||||
msgstr "عدم السؤال مجدداً على هذا الجهاز"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "تشغيل المصادقة ثنائية العوامل "
|
||||
msgstr "تشغيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "أدخل الكود المكون من ستة أرقام أدناه "
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "تفعيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسار HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "تاريخ الانتهاء"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "صيغة كود المصادقة غير صالحة. "
|
||||
msgstr "صيغة كود المصادقة غير صالحة."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "معرفة المزيد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "نوع الحد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "تسجيل الدخول"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "ابحث عن زر \"إضافة حساب\" "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "في متجر Apple "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "في متجر Google Play "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "رمز QR "
|
||||
msgstr "رمز QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "إلغاء "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "إلغاء الكل "
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "النطاق "
|
||||
msgstr "النطاق"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "سر"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "إرسال بريد إلكتروني"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "سجلات حد المعدل لكلمة السر المؤقتة لمرة واحدة"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "يجب أن يحتوي رمز المصادقة على أرقام فقط "
|
||||
msgstr "يجب أن يحتوي رمز المصادقة على أرقام فقط"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"لتسجيل الدخول، قم بإدخال رمز المصادقة المكون من ستة أرقام أدناه الذي يرسله تطبيق المصادقة لديك.\n"
|
||||
"لتسجيل الدخول، قم بإدخال رمز المصادقة المكون من ستة أرقام أدناه الذي يرسله "
|
||||
"تطبيق المصادقة لديك.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "آخر عداد لكلمة المرور لمرة واحدة المستندة إلى الوقت (Totp)"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "كلمة سر مؤقتة لمرة واحدة "
|
||||
msgstr "كلمة سر مؤقتة لمرة واحدة"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "الأجهزة الموثوقة "
|
||||
msgstr "الأجهزة الموثوقة"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "تفعيل المصادقة ثنائية العوامل "
|
||||
msgstr "تفعيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "المصادقة ثنائية العوامل "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"المصادقة ثنائية العوامل (\"2FA\") هو نظام للمصادقة المزدوجة.\n"
|
||||
" تتم المصادقة الأولى بكلمة السر الخاصة بك والثانية برمز يصلك من تطبيق على الهاتف مخصص لذلك.\n"
|
||||
" المفضلة منها تتضمن Authy، مصادقة Google، أو مصادقة Microsoft. "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"المصادقة ثنائية العوامل (\"2FA\") هو نظام للمصادقة المزدوجة.\n"
|
||||
"تتم المصادقة الأولى بكلمة السر الخاصة بك والثانية برمز يصلك من تطبيق على الهاتف مخصص لذلك.\n"
|
||||
"المفضلة منها تتضمن Authy، مصادقة Google، أو مصادقة Microsoft. "
|
||||
msgstr "المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "المصادقة ثنائية العوامل "
|
||||
msgstr "المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "تم تعطيل المصادقة ثنائية العوامل "
|
||||
msgstr "تم تعطيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "تم تشغيل المصادقة ثنائية العوامل "
|
||||
msgstr "تم تشغيل المصادقة ثنائية العوامل"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "المصادقة ثنائية العوامل مشغلة بالفعل "
|
||||
msgstr "المصادقة ثنائية العوامل مشغلة بالفعل"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "بإمكانك تشغيل المصادقة ثنائية العوامل لنفسك فقط "
|
||||
msgstr "بإمكانك تشغيل المصادقة ثنائية العوامل لنفسك فقط"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "تم تعطيل المصادقة ثنائية العوامل للمستخدم (المستخدمين) التاليين: %s "
|
||||
msgstr "تم تعطيل المصادقة ثنائية العوامل للمستخدم (المستخدمين) التاليين: %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "رابط URL "
|
||||
msgstr "رابط URL"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "كود التصديق "
|
||||
msgstr "كود التصديق"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
"فشلت عملية التصديق، الرجاء التحقق مرة أخرى من الكود المكون من ستة أرقام "
|
||||
"فشلت عملية التصديق، الرجاء التحقق مرة أخرى من الكود المكون من ستة أرقام"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "فشلت عملية التصديق، يرجى استخدام أحدث رمز مكون من 6 أرقام"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"لقد وصلت إلى الحد الأقصى لعدد رسائل البريد الإلكتروني للتحقق من الهوية التي "
|
||||
"تم إرسالها إلى حسابك، يرجى إعادة المحاولة لاحقًا."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"لقد وصلت إلى الحد الأقصى لعدد عمليات التحقق من الرمز لحسابك، يرجى إعادة "
|
||||
"المحاولة لاحقًا."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "مثال: 123456 "
|
||||
msgstr "مثال: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">أو قم بتثبيت تطبيق المصادقة</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">قم بتثبيت تطبيق المصادقة على جهازك المحمول</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">قم بمسح الباركود أدناه عندما يُطلَب منك "
|
||||
#~ "ذلك</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">قم "
|
||||
#~ "بنسخ المفتاح أدناه عندما يُطلَب منك ذلك</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">المفضلة منها تتضمن Authy، مصادقة Google، أو "
|
||||
#~ "مصادقة Microsoft.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">هذا الحساب محمي!"
|
||||
#~ "</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">حسابك محمي!</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "تمت إضافته في"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "هل أنت متأكد؟ قد يُطلب من المستخدم إدخال رموز المصادقة ثنائية العوامل "
|
||||
#~ "مجدداً في تلك الحسابات"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "هل أنت متأكد؟ قد يُطلب منك إدخال رموز المصادقة ثنائية العوامل مجدداً في تلك "
|
||||
#~ "الحسابات"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "ضبط تطبيق المصادقة"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "اضغط على هذا الرابط لفتح تطبيق المصادقة لديك"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "الجهاز"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "تعطيل المصادقة ثنائية العوامل"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "أدخل الكود المكون من ستة أرقام أدناه"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "ابحث عن زر \"إضافة حساب\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "في متجر Apple"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "في متجر Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "إلغاء"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "إلغاء الكل"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "المصادقة ثنائية العوامل (\"2FA\") هو نظام للمصادقة المزدوجة.\n"
|
||||
#~ "تتم المصادقة الأولى بكلمة السر الخاصة بك والثانية برمز يصلك من تطبيق على "
|
||||
#~ "الهاتف مخصص لذلك.\n"
|
||||
#~ "المفضلة منها تتضمن Authy، مصادقة Google، أو مصادقة Microsoft."
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -18,7 +18,6 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -30,87 +29,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -123,14 +75,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -140,16 +86,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
|
@ -167,13 +115,7 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -181,9 +123,16 @@ msgstr ""
|
|||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -200,85 +149,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -291,10 +223,19 @@ msgstr ""
|
|||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -305,6 +246,11 @@ msgid ""
|
|||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -312,15 +258,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -331,22 +274,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -365,21 +292,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -391,26 +315,56 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,30 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -36,87 +33,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivləşdir"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Əlavə edilib"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -129,14 +79,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Ləğv edin"
|
||||
|
||||
|
|
@ -146,16 +90,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
|
@ -173,25 +119,26 @@ msgstr "Təsvir"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Deaktiv"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Ləğv edin"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
msgstr "Göstəriləcək Ad"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -206,87 +153,70 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Marşrutizasiyası"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Son İstifadə Tarixi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Daha çox Məlumat Əldə et"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Daxil ol"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Apple Store-da"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Google Play-də"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Hamısını ləğv et"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
|
|
@ -297,20 +227,35 @@ msgstr "Əhatə dairəsi"
|
|||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Emaili göndər"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -318,15 +263,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -337,22 +279,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "İki faktorlu doğrulama"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -371,21 +297,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -397,26 +320,56 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,448 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s на %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Майстар двухфактарнай налады"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя цяпер уключана."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Даведацца больш"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Даведацца больш"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Гэты ўліковы запіс абаронены!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ваш уліковы запіс абаронены!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Або ўсталюйце праграму-аўтэнтыфікатар</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Усталюйце праграму-аўтэнтыфікатар на мабільную прыладу</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Пры ўзнікненні запыту, адсканіруйце прыведзены ніжэй штрых-код</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Пры ўзнікненні запыту, скапіруйце прыведзены ніжэй ключ</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Сярод папулярных - Authy, Google Authenticator "
|
||||
"або Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Бяспека ўліковага запісу"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Актываваць"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Дададзена"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Вы ўпэўнены? Карыстальніку можа быць зноў прапанавана ўвесці двухфактарныя "
|
||||
"кады на гэтых прыладах"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Вы ўпэўнены? Вам можа быць зноў прапанавана ўвесці двухфактарныя кады на "
|
||||
"гэтых прыладах"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Код аўтэнтыфікацыі"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Прылада аўтэнтыфікацыі"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Налады праграмы-аўтэнтыфікатара"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Адмяніць"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Не можаце адсканаваць?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Націсніце на гэтую спасылку, каб адкрыць сваю праграму-аўтэнтыфікатар"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Дата стварэння"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Апісанне"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Прылада"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Адключыць 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Адключыць двухфактарную аўтэнтыфікацыю"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Больш не пытацца на гэтай прыладзе"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Уключыць 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Увядзіце свой шасцізначны код ніжэй"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-маршрутызацыя"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Няправільны фармат кода аўтэнтыфікацыі."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Падрабязней"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Увайсці"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Знайдзіце кнопку «Дадаць уліковы запіс»."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "У Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "У Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR-код"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Адклікаць"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Адклікаць усе"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Воблась доступу"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Сакрэт"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Праверачны код павінен складацца толькі з лічбаў"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Каб увайсці, увядзіце ніжэй шасцізначны код, прапанаваны вашай праграмай-аўтэнтыфікатарам.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp сакрэт"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Давераныя прылады"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Актывацыя двухфактарнай аўтэнтыфікацыі"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двухфактарная аўтэнтыфікацыя (\"2FA\") - гэта сістэма падвойнай аўтэнтыфікацыі.\n"
|
||||
" Першая выконваецца з вашым паролем, а другая - з дапамогай кода, які вы атрымліваеце праз вызначаны мабільны дадатак.\n"
|
||||
" Сярод папулярных - Authy, Google Authenticator або Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двухфактарная аўтэнтыфікацыя (\"2FA\") - гэта сістэма падвойнай аўтэнтыфікацыі.\n"
|
||||
" Першая выконваецца з вашым паролем, а другая - з дапамогай кода, які вы атрымліваеце праз вызначаны мабільны дадатак.\n"
|
||||
" Сярод папулярных - Authy, Google Authenticator або Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя адключана"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя ўключана"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Двухфактарная аўтэнтыфікацыя ўжо ўключана раней"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Двухфактарную аўтэнтыфікацыю можна ўключыць толькі для сябе"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Двухфактарная аўтэнтыфікацыя адключана для наступнага карыстальніка "
|
||||
"(карыстальнікаў): %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Праверачны код"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Праверка не здзейснена, калі ласка, праверце яшчэ раз 6-значны код"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "напрыклад, 123456"
|
||||
|
|
@ -1,36 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Peter Petrov, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
# Venelin Stoykov, 2024
|
||||
# Milena Georgieva, 2024
|
||||
# Veselina Slavkova, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/bg/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s на %(platform)s"
|
||||
|
||||
|
|
@ -42,107 +33,54 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Активирайте"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Добавено на"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Автентификационен код"
|
||||
msgstr "Код за автентикация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Устройство за автентикация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Настройка на приложението за автентикация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Отказ"
|
||||
|
||||
|
|
@ -152,17 +90,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Неуспешно сканиране?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
"Натиснете върху този линк, за да отворите приложението за автентикация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
|
@ -180,23 +119,24 @@ msgstr "Описание"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Устройство"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Лишете от способност"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Деактивирай двуфакторна автентификация"
|
||||
msgstr "Деактивирай двуфакторно заверяване"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Отхвърлете"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
|
|
@ -213,85 +153,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Въведете своя шестцифрен код по-долу"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Маршрутизиране"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Дата на изтичане срока на годност"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Научете повече"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Влезте в системата"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Отмяна"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -304,20 +227,35 @@ msgstr "Обхват"
|
|||
msgid "Secret"
|
||||
msgstr "Тайна"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Изпратете имейл"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -325,82 +263,54 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Активация на двуфакторна автентификация"
|
||||
msgstr "Активация на двуфакторно заверяване"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Двуфакторна автентификация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двуфакторното заверяване (\"2FA\") е система за двойно верифициране.\n"
|
||||
" Първото е през парола, а второто, чрез специализирано мобилно приложение.\n"
|
||||
" Възможни варианти са Authy, Google Authenticator или Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двуфакторното заверяване (\"2FA\") е система за двойно заверяване.\n"
|
||||
"Първото е през парола, а второто, чрез специализирано мобилно приложение.\n"
|
||||
"Възможни варианти са Authy, Google Authenticator или Microsoft Authenticator."
|
||||
msgstr "Двуфакторно заверяване"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Двуфакторна автентификация"
|
||||
msgstr "Двуфакторно заверяване"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Двуфакторна автентификация е деактивирана"
|
||||
msgstr "Двуфакторното заверяване е деактивирано"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Двуфакторна автентификация е активирана"
|
||||
msgstr "Двуфакторното заверяване е активирано"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Двуфакторна автентификация е вече активирана"
|
||||
msgstr "Двуфакторно заверяване е вече активирано"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Двуфакторна автентификация може да бъде активирана само персонално"
|
||||
msgstr "Двуфакторно заверяване може да бъде активирано само персонално"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Двуфакторна автентификация е деактивирана за следните клиенти: %s"
|
||||
msgstr "Двуфакторното заверяване е деактивирано за следните потребител(и): %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
|
|
@ -410,26 +320,56 @@ msgstr "URL адрес"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,443 +1,377 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
# * auth_totp
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/bs/>\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s na %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "2-faktor setup čarobnjak"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Dvofaktorska autentifikacija je sada omogućena."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentacija\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentacija\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ovaj račun je zaštićen!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Vaš račun je zaštićen!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Ili instalirajte aplikaciju za autentifikaciju</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instalirajte aplikaciju za autentifikaciju na vašem mobilnom uređaju</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Kada budete upitani, skenirajte donji barkod</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kada budete upitani, kopirajte donji ključ</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Popularne su Authy, Google Authenticator ili "
|
||||
"Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Sigurnost računa"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiviraj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid "Added On"
|
||||
msgstr "Dodano na"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Da li ste sigurni? Korisnik može biti zamoljen da ponovo unese dvofaktorske "
|
||||
"kodove na tim uređajima"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Da li ste sigurni? Možda ćete biti zamoljeni da ponovo unesete dvofaktorske "
|
||||
"kodove na tim uređajima"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kod za autentifikaciju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Uređaj za autentifikaciju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Podešavanje autentifikatorske aplikacije"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Ne možete skenirati?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kliknite na ovaj link da otvorite svoju autentifikatorsku aplikaciju"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid "Device"
|
||||
msgstr "Uređaj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Onemogući 2FA"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Onemogući dvofaktorsku autentifikaciju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Odbaci"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Ne pitaj ponovo na ovom uređaju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Omogući 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Unesite svoj šestociferni kod ispod"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmjeravanje"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Nevažeći format koda za autentifikaciju."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saznaj više"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prijava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Tražite dugme \"Dodaj račun\""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "U Apple storu"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Na Google play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR kod"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid "Revoke"
|
||||
msgstr "Opozovi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid "Revoke All"
|
||||
msgstr "Opozovi sve"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Opseg"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Pošalji e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Verifikacijski kod treba sadržavati samo brojeve"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Za prijavu, unesite dolje šestocifreni autentifikacijski kod koji pruža vaša aplikacija za autentifikaciju.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp tajna"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Pouzdani uređaji"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Aktivacija dvofaktorske autentifikacije"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvofaktorska autentifikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dvofaktorska autentifikacija (\"2FA\") je sistem dvostruke autentifikacije.\n"
|
||||
" Prva se vrši pomoću vaše lozinke a druga pomoću koda koji dobijete od namjenske mobilne aplikacije.\n"
|
||||
" Popularne su Authy, Google Authenticator ili Microsoft Authenticator."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
"Dvofaktorska autentifikacija (2FA) je sustav dvostruke provjere identiteta. \n"
|
||||
" Prva provjera se vrši pomoću vaše lozinke, a druga pomoću koda koji dobivate iz posebne mobilne aplikacije.\n"
|
||||
" Popularne aplikacije su Authy, Google Authenticator i Microsoft Authenticator."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Dvofaktorska autentifikacija"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Dvofaktorska autentifikacija onemogućena"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Dvofaktorska autentifikacija omogućena"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Dvofaktorska autentifikacija već omogućena"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Dvofaktorska autentifikacija se može omogućiti samo za vas"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Dvofaktorska autentifikacija onemogućena za sljedeće korisnik(e): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "URL"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
msgid "Verification Code"
|
||||
msgstr "Verifikacijski kod"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py
|
||||
#, python-format
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verifikacija neuspješna, molimo dvaput provjerite 6-ciferni kod"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "npr. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,35 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# 7b9408628f00af852f513eb4f12c005b_f9c6891, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Óscar Fonseca <tecnico@pyming.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s a %(platform)s"
|
||||
|
||||
|
|
@ -41,106 +34,41 @@ msgstr "2-Auxiliar de configuració de factors"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-L'autenticació de factor està habilitada."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
"Més informació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
"Més informació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Aquest compte està protegit!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">El vostre compte està protegit!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">O instal·la una aplicació d'autenticador</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instal·la una aplicació d'autenticador al teu dispositiu mòbil</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Quan se li demana que ho faci, escanegeu el codi de barres a sota</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Quan se li demana que ho faci, copieu la clau següent</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Els més populars inclouen Authy, Google "
|
||||
"Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Seguretat del compte"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Afegit el"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"N'estàs segur? Es pot demanar a l'usuari que torni a introduir codis de dos "
|
||||
"factors en aquests dispositius"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"N'estàs segur? Se us pot demanar que torneu a introduir codis de dos factors"
|
||||
" en aquests dispositius"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -152,16 +80,10 @@ msgstr "Codi d'autenticació"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Dispositiu d'autenticació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Configuració de l'aplicació delenenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -169,17 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "No es pot escanejar?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
"Feu clic en aquest enllaç per obrir la vostra aplicació d'autenticador"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Comprovació del codi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
|
@ -197,25 +120,26 @@ msgstr "Descripció"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositiu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Inhabilita 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Inhabilitar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Desactiva l'autenticació de doble factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -230,86 +154,69 @@ msgstr "Habilitar 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Introduïu el vostre codi de sis dígits a sota"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutament HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data d'expiració"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "El format del codi d'autenticació no és vàlid."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Veure més"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipus de límit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Iniciar sessió"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Cerca un botó «Afegeix un compte»"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "A Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "A Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revocar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Eliminar tot"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -321,22 +228,38 @@ msgstr "Àmbit"
|
|||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Enviar correu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Registres del límit de velocitat TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "El codi de verificació només hauria de contenir números"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Per iniciar la sessió, introduïu sota el codi d'autenticació de sis dígits proporcionat per la vostra aplicació d'Authenticator.\n"
|
||||
"Per iniciar la sessió, introduïu sota el codi d'autenticació de sis dígits "
|
||||
"proporcionat per la vostra aplicació d'Authenticator.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -344,15 +267,12 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispositiu de confiança"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activació de l'autenticació en dos factors"
|
||||
|
||||
|
|
@ -363,28 +283,6 @@ msgstr "Activació de l'autenticació en dos factors"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticació de dos factors"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autenticació de doble factor (\"2FA\") és un sistema d'autenticació doble.\n"
|
||||
"El primer es fa amb la vostra contrasenya i el segon amb un codi que obteniu d'una aplicació mòbil dedicada.\n"
|
||||
"Els més populars inclouen Authy, Google Authenticator o Microsoft Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"L'autenticació de dos factors (\"2FA\") és un sistema d'autenticació doble.\n"
|
||||
" La primera es fa amb la contrasenya i la segona amb un codi que s'obté d'una aplicació mòbil dedicada.\n"
|
||||
" Els més populars inclouen Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -403,52 +301,185 @@ msgstr "Autenticació de dos passos activada"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "L'autenticació de doble factor ja està habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "L'autenticació de doble factor només es pot habilitar per a tu mateix"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Autenticació de dos factors inhabilitada per als següents usuari(s)%s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Adreça URL"
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Codi de verificació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "La verificació ha fallat, si us plau comproveu el codi de 6 dígits"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "e.g. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">O instal·la una aplicació "
|
||||
#~ "d'autenticació</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instal·la una aplicació d'autenticació al teu dispositiu mòbil</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Quan se us demani que ho feu, escanegeu "
|
||||
#~ "el codi de barres a sota</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Quan se us demani que ho feu, copieu la clau següent</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Els més populars inclouen Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Aquest compte "
|
||||
#~ "està protegit!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Aquest compte "
|
||||
#~ "està protegit!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Afegit el"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "N'estàs segur? Es pot demanar a l'usuari que torni a introduir codis de "
|
||||
#~ "dos factors en aquests dispositius"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "N'estàs segur? Se us pot demanar que torneu a introduir codis de dos "
|
||||
#~ "factors en aquests dispositius"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Configuració de l'aplicació d'autenticació"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr ""
|
||||
#~ "Feu clic en aquest enllaç per obrir la vostra aplicació d'autenticació"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositiu"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Inhabilita 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Introduïu el vostre codi de sis dígits a sota"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Cerca un botó «Afegeix un compte»"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "A Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "A Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revocar"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Eliminar tot"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "L'autenticació de dos factors (\"2FA\") és un sistema d'autenticació "
|
||||
#~ "doble.\n"
|
||||
#~ " La primera es fa amb la contrasenya i la segona "
|
||||
#~ "amb un codi que s'obté d'una aplicació mòbil dedicada.\n"
|
||||
#~ " Els més populars inclouen Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,35 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Damian Brencic <brencicdamian12313@gmail.com>, 2022
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Stanislav Kurinec, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Stanislav Kurinec, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"cs/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s na %(platform)s"
|
||||
|
||||
|
|
@ -41,102 +34,41 @@ msgstr "Průvodce nastavením dvoufaktorového ověření"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-faktorové ověřování je nyní povoleno."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Zjistěte více"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Zjistěte více"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Nebo si nainstalujte aplikaci pro ověřování</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Nainstalujte si do svého mobilního zařízení aplikaci pro ověřování</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Až budete požádáni, naskenujte níže uvedený čárový kód</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Až budete požádáni, zkopírujte klíč níže</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Mezi oblíbené patří Authy, Google Authenticator "
|
||||
"nebo Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Zabezpečení účtu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "aktivovat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Přidáno na"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Jste si jistí? Uživatel může být na těchto zařízeních znovu požádán o zadání"
|
||||
" dvoufaktorových kódů"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Jste si jistí? Můžete být znovu požádáni o zadání dvoufaktorových kódů na "
|
||||
"těchto zařízeních"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -146,16 +78,10 @@ msgstr "Autentizační kód"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autorizační zařízení"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Nastavení autentifikační aplikace"
|
||||
msgstr "Autentikační zařízení"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
|
|
@ -165,19 +91,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Nejde to naskenovat?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kliknutím na tento odkaz otevřete aplikaci pro ověřování"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Kontrola kódu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
msgstr "Vytvořeno uživatelem"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -192,25 +120,26 @@ msgstr "Popis"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Zařízení"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Vypnout 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Vypnout"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Vypnout dvoufaktorové ověřování"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -221,90 +150,73 @@ msgstr "Na tomto zařízení se již neptat"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Povolit 2FA"
|
||||
msgstr "Zapnout 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Níže zadejte svůj šestimístný kód"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Datum platnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Neplatný formát ověřovacího kódu."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Další informace"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Typ limitu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Přihlásit se"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Hledejte tlačítko „Přidat účet“."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "V Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Na Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Odvolat vše"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -314,40 +226,53 @@ msgstr "Rozsah"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajný"
|
||||
msgstr "Tajný klíč"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Poslat email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP míra limitace logů"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Ověřovací kód by měl obsahovat pouze čísla"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Chcete-li se přihlásit, zadejte níže šestimístný ověřovací kód poskytnutý vaší ověřovací aplikací.\n"
|
||||
"Chcete-li se přihlásit, zadejte níže šestimístný ověřovací kód poskytnutý "
|
||||
"vaší ověřovací aplikací.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "tajemství totp"
|
||||
msgstr "Totp tajný klíč"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Důvěryhodná zařízení"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Aktivace dvoufaktorové autentizace"
|
||||
|
||||
|
|
@ -358,28 +283,6 @@ msgstr "Aktivace dvoufaktorové autentizace"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvoufaktorové ověřování"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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é patří Authy, Google Authenticator nebo Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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é patří Authy, Google Authenticator nebo Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -398,21 +301,18 @@ msgstr "Dvoufaktorové ověřování zapnuto"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Dvoufaktorové ověřování je již povoleno"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Dvoufaktorové ověřování lze povolit pouze pro sebe"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Dvoufaktorové ověřování vypnuto pro následující uživatele: %s"
|
||||
|
||||
|
|
@ -424,26 +324,160 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Ověřovací kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Ověření se nezdařilo, zkontrolujte prosím šestimístný kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "např. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Nebo si nainstalujte aplikaci pro "
|
||||
#~ "ověřování</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Nainstalujte si do svého mobilního zařízení aplikaci pro "
|
||||
#~ "ověřování</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Až budete požádáni, naskenujte níže "
|
||||
#~ "uvedený čárový kód</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Až "
|
||||
#~ "budete požádáni, zkopírujte klíč níže</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Mezi oblíbené patří Authy, Google "
|
||||
#~ "Authenticator nebo Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Tento účet je "
|
||||
#~ "chráněn!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Váš účet je "
|
||||
#~ "chráněn!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Přidáno na"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Jste si jistí? Uživatel může být znovu požádán o zadání dvoufaktorových "
|
||||
#~ "kódů na těchto zařízeních"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Jste si jistí? Můžete být znovu požádáni o zadání dvoufaktorových kódů na "
|
||||
#~ "těchto zařízeních"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Nastavení ověřovací aplikace"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Kliknutím na tento odkaz otevřete aplikaci pro ověřování"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Zařízení"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Vypnout 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Níže zadejte svůj šestimístný kód"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Hledejte tlačítko „Přidat účet“."
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "V Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Na Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Zrušit"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Odvolat vše"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "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é patří Authy, Google "
|
||||
#~ "Authenticator nebo Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,155 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s på %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "2-trins Opsætningsguide"
|
||||
msgstr "2-trins indstillingsguide"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-trins autentificering er nu aktiveret."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lær mere"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lær mere"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Din konto er beskyttet!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Eller installer en autentificerings applikation</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Installer en autentificerings applikation på din mobile enhed</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Når der anmodes om det, scan da stregkoden nedenfor</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Når der anmodes om det, kopier da nøglen nedenfor</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Populære applikationer er Authy, Google "
|
||||
"Authenticato, eller Microsoft Authenticator applikationerne.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Konto sikkerhed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivér"
|
||||
msgstr "2-trins godkendelse er nu aktiveret."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Tilføjet Den"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Autentificeringskode"
|
||||
msgstr "Godkendelseskode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentificeringsenhed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Autentificering Applikation Opsætning"
|
||||
msgstr "Godkendelsesenhed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
|
|
@ -159,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Kan den ikke scannes?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klik på dette link for at åbne din autentificerings applikation"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
|
@ -186,23 +120,24 @@ msgstr "Beskrivelse"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Enhed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deaktiver 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivér"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Deaktiver to-trins autentificering"
|
||||
msgstr "Deaktiver 2-trins godkendelse"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Kassér"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
|
|
@ -219,86 +154,69 @@ msgstr "Aktiver 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Angiv din seks-cifrede kode nedenfor"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Udløbsdato"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Ugyldig autentificering kode format."
|
||||
msgstr "Ugyldig godkendelses kodeformat."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Lær mere"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Log ind"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Se efter en \"Tilføj en konto\" knap"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "På Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "På Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrkode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Tilbagekald"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Tilbagekald Alle"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -310,22 +228,38 @@ msgstr "Anvendelsesområde"
|
|||
msgid "Secret"
|
||||
msgstr "Hemmelighed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Send e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Bekræftelses koden bør kun indeholde tal"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"For at logge ind, skal du nedenfor angive den seks-cifrede autentificeringskode tildelt via Autentificerings applikationen.\n"
|
||||
"For at logge ind, skal du nedenfor angive den seks-cifrede "
|
||||
"autentificeringskode tildelt via Autentificerings applikationen.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -333,79 +267,54 @@ msgstr "Totp Hemmelig"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Betroede Enheder"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "To-trins Autentificering Aktivering"
|
||||
msgstr "Aktivering af 2-trins godkendelse"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "To-faktor Autentificering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"To-trins autentificering (\"2FA\") er et dobbelt-autentificerings system.\n"
|
||||
" Det første trin udføres med dit kodeord, og det andet men kode du modtager via en dedikeret mobil applikation.\n"
|
||||
" Populære applikationer er Authy, Google Authenticato, eller Microsoft Authenticator applikationerne."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
msgstr "2-trins godkendelse"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "To-faktor autentificering"
|
||||
msgstr "2-trins godkendelse"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "To-trins autentificering Deaktiveret"
|
||||
msgstr "2-trins godkendelse deaktiveret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "To-trins autentificering Aktiveret"
|
||||
msgstr "2-trins godkendelse aktiveret"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "To-faktor autentificering allerede aktiveret"
|
||||
msgstr "2-trins godkendelse allerede aktiveret"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "To-faktor autentificering kan kun aktiveres for dig selv"
|
||||
msgstr "2-trins godkendelse kan kun aktiveres for dig selv"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "To-trins autentificering deaktiveret for følgende bruger(e): %s"
|
||||
msgstr "2-trins godkendelse deaktiveret for følgende bruger(e): %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
|
|
@ -415,26 +324,132 @@ msgstr "Adresse"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Bekræftelses kode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Bekræftelse slog fejl, vær venlig at tjekke den 6-cifrede kode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "f.eks. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Eller installer en autentificerings "
|
||||
#~ "applikation</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Installer en autentificerings applikation på din mobile enhed</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Når der anmodes om det, scan da "
|
||||
#~ "stregkoden nedenfor</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Når "
|
||||
#~ "der anmodes om det, kopier da nøglen nedenfor</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Populære applikationer er Authy, Google "
|
||||
#~ "Authenticato, eller Microsoft Authenticator applikationerne.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Denne konto er "
|
||||
#~ "beskyttet!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Din konto er "
|
||||
#~ "beskyttet!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Tilføjet Den"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Opsætning af godkendelsesappen"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Klik på dette link for at åbne din autentificerings applikation"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Enhed"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Deaktiver 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Angiv din seks-cifrede kode nedenfor"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Se efter en \"Tilføj en konto\" knap"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "På Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "På Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Tilbagekald"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Tilbagekald Alle"
|
||||
|
|
|
|||
|
|
@ -1,140 +1,85 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-13 09:19+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s auf %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "2-Faktor-Einrichtungsassistent"
|
||||
msgstr "2-Faktor-Installationsassistent"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Zwei-Faktor-Authentifizierung ist jetzt aktiviert."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Mehr erfahren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Mehr erfahren"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Aktiviert\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Dieses Konto ist geschützt!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ihr Konto ist geschützt!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Oder installieren Sie eine Authentifizierungsapp</span><span class=\"d-none d-md-block\">\n"
|
||||
"Installieren Sie eine Authentifizierungsapp auf Ihrem mobilen Gerät</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Wenn Sie dazu aufgefordert werden, scannen Sie den unten stehenden Barcode</span>\n"
|
||||
"<span class=\"d-block d-md-none\">Wenn Sie dazu aufgefordert werden, kopieren Sie den unten stehenden Schlüssel</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Zu den beliebtesten gehören Authy, Google "
|
||||
"Authenticator oder der Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Kontosicherheit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivieren"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Deaktiviert\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Hinzugefügt am"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Für erhöhte Sicherheit empfohlen.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Sind Sie sicher? Der Benutzer wird eventuell gebeten, die Zwei-Faktor-Codes "
|
||||
"erneut auf diesen Geräten einzugeben"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Sind Sie sicher? Sie werden eventuell gebeten, die Zwei-Faktor-Codes erneut "
|
||||
"auf diesen Geräten einzugeben"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Fügen Sie diesen Schlüssel in Ihre Authenticator-App ein"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -146,14 +91,8 @@ msgstr "Authentifizierungscode"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Gerät zur Authentifizierung"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Einrichtung der Authentifizierungsapp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
|
@ -163,16 +102,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Scannen klappt nicht?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klicken Sie auf diesen Link, um Ihre Authentifizierungsapp zu öffnen"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Code-Prüfung"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
|
@ -190,23 +131,24 @@ msgstr "Beschreibung"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Gerät"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA deaktivieren"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivieren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "2-Faktor-Authentifizierung deaktivieren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
|
|
@ -223,86 +165,69 @@ msgstr "2FA aktivieren"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Geben Sie unten Ihren 6-stelligen Code ein"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Zwei-Faktor-Authentifizierung aktivieren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Ablaufdatum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Ungültiges Format des Authentifizierungscodes."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Mehr erfahren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Art des Limits"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Anmelden"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Suchen Sie nach einer „Ein Konto hinzufügen“-Schaltfläche"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Im Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Auf Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Widerrufen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Alle widerrufen"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Scannen Sie diesen Barcode mit Ihrer Authenticator-App"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -314,22 +239,38 @@ msgstr "Gültigkeitsbereich"
|
|||
msgid "Secret"
|
||||
msgstr "Geheimnis"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "E-Mail versenden"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP-Quotenbegrenzungsprotokolle"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Der Verifizierungscode sollte nur Zahlen enthalten"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Geben Sie zur Anmeldung unten den sechsstelligen Authentifizierungscode ein, der von Ihrer Authentifizierungsapp bereitgestellt wird.\n"
|
||||
"Geben Sie zur Anmeldung unten den sechsstelligen Authentifizierungscode ein, "
|
||||
"der von Ihrer Authentifizierungsapp bereitgestellt wird.\n"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Letzter Totp-Zähler"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -337,15 +278,12 @@ msgstr "Totp-Geheimnis"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Vertrauenswürdige Geräte"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Aktivierung der Zwei-Faktor-Authentifizierung"
|
||||
|
||||
|
|
@ -356,28 +294,6 @@ msgstr "Aktivierung der Zwei-Faktor-Authentifizierung"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Die Zwei-Faktor-Authentifizierung („2FA“) ist ein System der doppelten Authentifizierung.\n"
|
||||
" Die erste erfolgt mit Ihrem Passwort und die zweite mit einem Code, den Sie von einer speziellen mobilen App erhalten.\n"
|
||||
" Zu den beliebtesten gehören Authy, Google Authenticator oder Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Die Zwei-Faktor-Authentifizierung („2FA“) ist ein System der doppelten Authentifizierung.\n"
|
||||
" Die erste erfolgt mit Ihrem Passwort und die zweite mit einem Code, den Sie von einer speziellen mobilen App erhalten.\n"
|
||||
" Zu den beliebtesten gehören Authy, Google Authenticator oder Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -396,14 +312,12 @@ msgstr "Zwei-Faktor-Authentifizierung aktiviert"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Zwei-Faktor-Authentifizierung bereits aktiviert"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
"Die Zwei-Faktor-Authentifizierung kann nur für Sie selbst aktiviert werden"
|
||||
|
|
@ -411,7 +325,6 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Die Zwei-Faktor-Authentifizierung ist für folgende(n) Benutzer deaktiviert: "
|
||||
|
|
@ -425,28 +338,168 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Verifizierungscode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Verifizierungscode"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
"Verifizierung fehlgeschlagen, bitte überprüfen Sie den 6-stelligen Code "
|
||||
"erneut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
"Verifizierung fehlgeschlagen, bitte überprüfen Sie den 6-stelligen Code"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Geben Sie den von Ihrer App bereitgestellten Code ein"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Sie haben das Limit für die Anzahl der gesendeten Authentifizierungsmails "
|
||||
"für Ihr Konto erreicht. Versuchen Sie es später erneut."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Sie haben das Limit für die Code-Verifizierungen für Ihr Konto erreicht. "
|
||||
"Versuchen Sie es später erneut."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "z. B. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Oder installieren Sie eine "
|
||||
#~ "Authentifizierungsapp</span><span class=\"d-none d-md-block\">\n"
|
||||
#~ "Installieren Sie eine Authentifizierungsapp auf Ihrem mobilen Gerät</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Wenn Sie dazu aufgefordert werden, "
|
||||
#~ "scannen Sie den unten stehenden Barcode</span>\n"
|
||||
#~ "<span class=\"d-block d-md-none\">Wenn Sie dazu aufgefordert werden, "
|
||||
#~ "kopieren Sie den unten stehenden Schlüssel</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Zu den beliebtesten gehören Authy, Google "
|
||||
#~ "Authenticator oder der Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Dieses Konto "
|
||||
#~ "ist geschützt!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Ihr Konto ist "
|
||||
#~ "geschützt!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Hinzugefügt am"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Sind Sie sicher? Der Benutzer wird eventuell gebeten, die Zwei-Faktor-"
|
||||
#~ "Codes erneut auf diesen Geräten einzugeben"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Sind Sie sicher? Sie werden eventuell gebeten, die Zwei-Faktor-Codes "
|
||||
#~ "erneut auf diesen Geräten einzugeben"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Einrichtung der Authentifizierungsapp"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr ""
|
||||
#~ "Klicken Sie auf diesen Link, um Ihre Authentifizierungsapp zu öffnen"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Gerät"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "2FA deaktivieren"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Geben Sie unten Ihren 6-stelligen Code ein"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Suchen Sie nach einer „Ein Konto hinzufügen“-Schaltfläche"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Im Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Auf Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Widerrufen"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Alle widerrufen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Die Zwei-Faktor-Authentifizierung („2FA“) ist ein System der doppelten "
|
||||
#~ "Authentifizierung.\n"
|
||||
#~ " Die erste erfolgt mit Ihrem Passwort und die "
|
||||
#~ "zweite mit einem Code, den Sie von einer speziellen mobilen App "
|
||||
#~ "erhalten.\n"
|
||||
#~ " Zu den beliebtesten gehören Authy, Google "
|
||||
#~ "Authenticator oder Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,23 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:22+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -27,88 +32,42 @@ msgid "2-Factor Setup Wizard"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -121,16 +80,10 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -138,40 +91,36 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
msgstr "Ημερομηνία Δημιουργίας"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -179,11 +128,18 @@ msgstr ""
|
|||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Απόρριψη"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -198,68 +154,59 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Ημερ. Λήξης"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
msgstr "Σύνδεση"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
|
|
@ -267,21 +214,14 @@ msgid "Qrcode"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "Πεδίο εφαρμογής"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
|
|
@ -289,18 +229,34 @@ msgid "Secret"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Αποστολή Email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -308,14 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -326,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -358,50 +296,84 @@ msgid "Two-factor authentication Enabled"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
msgstr "Διεύθυνση (Url)"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Συσκευή"
|
||||
|
|
@ -1,31 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-08 09:31+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/es/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s en %(platform)s"
|
||||
|
||||
|
|
@ -37,106 +35,52 @@ msgstr "Asistente de la configuración de la autenticación de dos factores"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Se habilitó la autenticación de dos factores."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Más información"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Más información"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Activado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Esta cuenta está protegida</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">¡Su cuenta está protegida!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">O instale una aplicación de autenticación</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instale una aplicación de autenticación en su dispositivo móvil</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Cuando se le pida hacerlo, escanee el código de barras de abajo</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Cuando se le pida, copie la clave de abajo</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Las aplicaciones populares incluyen Authy, Google"
|
||||
" Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Seguridad de la cuenta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activar"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Desactivado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Añadido en"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recomendado para mayor seguridad.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"¿Está seguro? Es posible que se le pida al usuario ingresar códigos de dos "
|
||||
"factores de nuevo en esos dispositivos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"¿Está seguro? Es posible que se le pida ingresar códigos de dos factores de "
|
||||
"nuevo en esos dispositivos"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Añade esta clave en tu aplicación Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -148,14 +92,8 @@ msgstr "Código de autenticación"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Configuración de la aplicación de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
|
|
@ -165,16 +103,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "¿No lo puede escanear?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Haga clic en este enlace para abrir la aplicación de autenticación "
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Comprobación del código"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
|
@ -192,25 +132,26 @@ msgstr "Descripción"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deshabilitar la A2F"
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Deshabilitar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -225,86 +166,69 @@ msgstr "Habilitar la A2F"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Ingrese su código de 6 dígitos abajo"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Habilitar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP "
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Fecha de expiración"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Formato incorrecto del código de autenticación."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Más información"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipo de límite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Iniciar sesión"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Busque el botón \"añadir una cuenta\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "En Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "En Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Código QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revocar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Revocar todo"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Escanea este código de barras en la aplicación Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -316,22 +240,38 @@ msgstr "Alcance"
|
|||
msgid "Secret"
|
||||
msgstr "Secreto"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Enviar correo electrónico"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Cantidad límite de registros de TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "El código de verificación solo debe contener dígitos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Para iniciar sesión, ingrese el código de autenticación de seis dígitos que aparece en la aplicación de autentificación.\n"
|
||||
"Para iniciar sesión, ingrese el código de autenticación de seis dígitos que "
|
||||
"aparece en la aplicación de autentificación.\n"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Último contador TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -339,15 +279,12 @@ msgstr "Secreto TOTP"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispositivos de confianza"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activación de la autenticación de dos factores"
|
||||
|
||||
|
|
@ -358,28 +295,6 @@ msgstr "Activación de la autenticación de dos factores"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"La autenticación de dos factores (A2F) es un sistema de autenticación doble.\n"
|
||||
"La primera autentificación se hace con su contraseña, la segunda con un código que obtendrá de una aplicación específica para móviles.\n"
|
||||
"Entre las aplicaciones populares se encuentran Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"La autenticación de dos factores (A2F) es un sistema de autenticación doble.\n"
|
||||
"La primera autentificación se hace con su contraseña, la segunda con un código que obtendrá de una aplicación específica para móviles.\n"
|
||||
"Entre las aplicaciones populares se encuentran Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -398,21 +313,18 @@ msgstr "Autenticación de dos factores habilitada"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "La autenticación de dos factores ya está habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Solo usted puede habilitar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Se deshabilitó la autenticación de dos factores para los siguientes "
|
||||
|
|
@ -426,26 +338,165 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Código de verificación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Código de verificación"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "La verificación falló, revise el código de 6 dígitos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "La verificación falló. Use el último código de 6 dígitos."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Escribe el código que se te ha proporcionado en la aplicación"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Ha alcanzado el límite de correos electrónicos de autenticación enviados "
|
||||
"para su cuenta. Inténtelo de nuevo más tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Ha alcanzado el límite de verificaciones de código para su cuenta. Inténtelo "
|
||||
"de nuevo más tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "p. ej. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">O instale una aplicación de "
|
||||
#~ "autenticación</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instale una aplicación de autenticación en su dispositivo móvil</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Cuando se le pida hacerlo, escanee el "
|
||||
#~ "código de barras de abajo</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Cuando se le pida, copie la clave de abajo</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Las aplicaciones populares incluyen Authy, "
|
||||
#~ "Google Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Esta cuenta "
|
||||
#~ "está protegida</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Su cuenta está "
|
||||
#~ "protegida</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Añadido en"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "¿Está seguro? Es posible que se le pida al usuario ingresar códigos de "
|
||||
#~ "dos factores de nuevo en esos dispositivos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "¿Está seguro? Es posible que se le pida ingresar códigos de dos factores "
|
||||
#~ "de nuevo en esos dispositivos"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Configuración de la aplicación de autenticación"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Haga clic en este enlace para abrir la aplicación de autenticación"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositivo"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Deshabilitar la A2F"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Ingrese su código de 6 dígitos abajo"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Busque el botón \"añadir una cuenta\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "En Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "En Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revocar"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Revocar todo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "La autenticación de dos factores (A2F) es un sistema de autenticación "
|
||||
#~ "doble.\n"
|
||||
#~ "La primera autentificación se hace con su contraseña, la segunda con un "
|
||||
#~ "código que obtendrá de una aplicación específica para móviles.\n"
|
||||
#~ "Entre las aplicaciones populares se encuentran Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,30 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-11 17:43+0000\n"
|
||||
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_totp/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s en %(platform)s"
|
||||
|
||||
|
|
@ -36,106 +34,52 @@ msgstr "Asistente de la configuración de la autenticación de dos factores"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Se habilitó la autenticación de dos factores."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentación\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Más información"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentación\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Más información"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Habilitado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Esta cuenta está protegida</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Su cuenta está protegida</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">O instale una aplicación de autenticación</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instale una aplicación de autenticación en su dispositivo móvil</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Cuando se le pida hacerlo, escanee el código de barras de abajo</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Cuando se le pida, copie la clave de abajo</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Las aplicaciones populares incluyen Authy, Google"
|
||||
" Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Seguridad de la cuenta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activar"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Deshabilitado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Agregado el"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recomendado para mayor seguridad.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"¿Está seguro? Es posible que se le pida al usuario ingresar códigos de dos "
|
||||
"factores de nuevo en esos dispositivos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"¿Está seguro? Es posible que se le pida ingresar códigos de dos factores de "
|
||||
"nuevo en esos dispositivos"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Agrega esta clave a tu aplicación de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,33 +91,29 @@ msgstr "Código de autenticación"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Configuración de la aplicación de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "¿No lo puede escanear?"
|
||||
msgstr "¿No puedes escanear?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Haga clic en este enlace para abrir la aplicación de autenticación "
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Comprobar código"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
|
@ -191,23 +131,24 @@ msgstr "Descripción"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deshabilitar la A2F"
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Deshabilitar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
|
|
@ -224,86 +165,69 @@ msgstr "Habilitar la A2F"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Ingrese su código de 6 dígitos abajo"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Habilitar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Fecha de vencimiento"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Formato incorrecto del código de autenticación."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Más información"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipo de límite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Iniciar sesión"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Busque el botón \"agregar una cuenta\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "En Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "En Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Código QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revocar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Revocar todo"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Escanea este código de barras en tu aplicación de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,22 +239,38 @@ msgstr "Alcance"
|
|||
msgid "Secret"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Enviar correo electrónico"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Cantidad límite de registros de TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "El código de autenticación solo debe contener números"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Para iniciar sesión, ingrese el código de autenticación de seis dígitos que aparece en la aplicación de autentificación.\n"
|
||||
"Para iniciar sesión, escribe el código de seis dígitos que aparece en tu "
|
||||
"aplicación de autenticación.\n"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Último contador TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -338,15 +278,12 @@ msgstr "Contraseña TOTP"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispositivos de confianza"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activación de la autenticación de dos factores"
|
||||
|
||||
|
|
@ -357,28 +294,6 @@ msgstr "Activación de la autenticación de dos factores"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"La autenticación de dos factores (A2F) es un sistema de autenticación doble.\n"
|
||||
"La primera autentificación se hace con su contraseña, la segunda con un código que obtendrá de una aplicación específica para celulares.\n"
|
||||
"Entre las aplicaciones populares se encuentran Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"La autenticación de dos factores (A2F) es un sistema de autenticación doble.\n"
|
||||
"La primera autentificación se hace con su contraseña, la segunda con un código que obtendrá de una aplicación específica para celulares.\n"
|
||||
"Entre las aplicaciones populares se encuentran Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,21 +312,18 @@ msgstr "Se habilitó la autenticación de dos factores"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "La autenticación de dos factores ya está habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Solo usted puede activar la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Se deshabilitó la autenticación de dos factores para los siguientes "
|
||||
|
|
@ -425,26 +337,165 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Código de verificación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Código de verificación"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "La verificación falló, revisa el código de 6 dígitos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "La verificación falló. Usa el último código de 6 dígitos."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Escribe el código que te proporcionó tu aplicación"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Alcanzaste el límite de correos de autenticación enviados a tu cuenta, "
|
||||
"intenta de nuevo más tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Alcanzaste el límite de verificaciones de código para tu cuenta, intenta de "
|
||||
"nuevo más tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "Por ejemplo, 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">O instale una aplicación de "
|
||||
#~ "autenticación</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instale una aplicación de autenticación en su dispositivo móvil</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Cuando se le pida hacerlo, escanee el "
|
||||
#~ "código de barras de abajo</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Cuando se le pida, copie la clave de abajo</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Las aplicaciones populares incluyen Authy, "
|
||||
#~ "Google Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Esta cuenta "
|
||||
#~ "está protegida</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Su cuenta está "
|
||||
#~ "protegida</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Agregado el"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "¿Está seguro? Es posible que se le pida al usuario ingresar códigos de "
|
||||
#~ "dos factores de nuevo en esos dispositivos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "¿Está seguro? Es posible que se le pida ingresar códigos de dos factores "
|
||||
#~ "de nuevo en esos dispositivos"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Configuración de la aplicación de autenticación"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Haga clic en este enlace para abrir la aplicación de autenticación"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositivo"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Deshabilitar la A2F"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Ingrese su código de 6 dígitos abajo"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Busque el botón \"agregar una cuenta\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "En Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "En Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revocar"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Revocar todo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "La autenticación de dos factores (A2F) es un sistema de autenticación "
|
||||
#~ "doble.\n"
|
||||
#~ "La primera autenticación se hace con su contraseña, la segunda con un "
|
||||
#~ "código que obtendrá de una aplicación específica para celulares.\n"
|
||||
#~ "Entre las aplicaciones populares se encuentran Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator."
|
||||
|
|
@ -1,36 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Talts <martin.t@avalah.ee>, 2022
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Anna, 2023
|
||||
# Birgit Vijar, 2024
|
||||
# Stevin Lilla, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Stevin Lilla, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:31+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/et/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s selles %(platform)s"
|
||||
|
||||
|
|
@ -42,106 +33,41 @@ msgstr "2-astmelise sisse logimise ülesseadmise viisard"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-astmeline autentimine on nüüd lubatud. "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lisateave"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lisateave"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Antud konto on kaitstud!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Teie konto on kaitstud!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Või paigalda autentikaator rakendus</span>\n"
|
||||
"<span class=\"d-none d-md-block\">Paigalda autentikaator rakendus oma telefoni</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Skanneerige allolevat triipkoodi </span>\n"
|
||||
"<span class=\"d-block d-md-none\">Kopeerige allolev kood</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Populaarsed autentikaator rakendused on näiteks "
|
||||
"Authy, Google Authenticator või Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Konto andmed"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiveeri"
|
||||
msgstr "2-astmeline autentimine on nüüd lubatud."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Lisatud"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Oled kindel? Kasutajalt võidakse küsida kahe-astmelisi PIN-koode uuesti "
|
||||
"nende seadmete puhul"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Olete Te kindel? Teilt võidakse küsida kahe-astmelisi PIN-koode uuesti nende"
|
||||
" seadmete puhul"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -153,14 +79,8 @@ msgstr "Autentimiskood"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Autentimisseade"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Autentimise rakenduse paigaldamine"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Tühista"
|
||||
|
||||
|
|
@ -170,19 +90,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Kas ei saa skannerida?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Vajutage siia, et avada oma autentimise rakendus"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Koodi kontrollimine"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
msgstr "Loodud (kelle poolt?)"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -197,25 +119,26 @@ msgstr "Kirjeldus"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Seade"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Lülita kahe astmeline autentimine välja"
|
||||
msgid "Disable"
|
||||
msgstr "Keela"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Lülita kahe-etapiline tuvastamine välja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Loobu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
msgstr "Kuvatav nimi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -230,86 +153,69 @@ msgstr "Luba 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Sisesta kuue kohaline kood all"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Aegumiskuupäev"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Kehtetu autentimiskoodi formaat."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Lisateave"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Liimidi tüüp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Sisene"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Otsige \"Add an account\" nuppu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Apple Store'is"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Google Play's"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QRkood"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Tühistada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Tühista kõik"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -319,24 +225,40 @@ msgstr "Maht"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Saladus"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Saada e-kiri"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Kinnituskood peaks sisaldama ainult numbreid"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Sisse logimiseks sisesta kuue kohaline kood, mis on saadetud autentimise rakendusse.\n"
|
||||
"Sisse logimiseks sisesta kuue kohaline kood, mis on saadetud autentimise "
|
||||
"rakendusse.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -344,15 +266,12 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Usaldusväärsed seaded"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Kahe astmelise autentimise aktiveerimine"
|
||||
|
||||
|
|
@ -363,28 +282,6 @@ msgstr "Kahe astmelise autentimise aktiveerimine"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Kahe-etapiline tuvastamine"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Kahe astmeline Autentimine (\"2FA\") on süsteem milles kaks sammu sisselogimiseks.\n"
|
||||
"Esimene samm kasutab parooli ja teine kasutab koodi vastavast telefoni rakendusest.\n"
|
||||
"Populaarsed rakendused on näiteks Authy, Google Authenticator või Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Kahe astmeline Autentimine (\"2FA\") kasutab kahte sammu sisselogimiseks.\n"
|
||||
"Esimene samm kasutab parooli ja teine kasutab koodi vastavast telefoni rakendusest.\n"
|
||||
"Populaarsed rakendused on näiteks Authy, Google Authenticator või Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -403,21 +300,18 @@ msgstr "Kahe-astmeline tuvastamine aktiveeritud"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Kahe-etapiline tuvastamine on juba lubatud"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Ainult sina saad määrata kahe-etapilise tuvastamise"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Kaheastmeline autentimine on välja lülitatud järmiste kasutajate jaoks: %s"
|
||||
|
|
@ -430,26 +324,56 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Kinnituskood"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Kinnitamine ebaõnnestus, palun kontrollige üle 6-numbriline kood"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "e.g. 123456"
|
||||
|
|
|
|||
|
|
@ -1,140 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/fa/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s در %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr " راهاندازی آسان دو عاملی"
|
||||
msgstr "راهاندازی آسان 2 عاملی"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "اکنون اعتبارسنجی دو عاملی امکانپذیر است."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">یا یک اپلیکیشن اعتبارسنجی نصب کنید</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an اپلیکیشن اعتبارسنجی روی تلفن همراه شما</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">هنگامی که این درخواست مطرح میشود، بارکد زیر را اسکن کنید</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">موارد رایج عبارتند از اعتبارسنجهای Authy, "
|
||||
"Google یا نرمافزار اعتبارسنجی مایکروسافت. </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "امنیت حساب"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "فعال"
|
||||
msgstr "اکنون اعتبارسنجی 2 عاملی امکانپذیر است."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "اضافه شده در"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"مطمئن هستید؟ ممکن است از کاربر خواسته شود کد دو عاملی را دوباره در این "
|
||||
"دستگاهها وارد کند"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"مطمئن هستید؟ ممکن است از شما خواسته شود کدهای دو عاملی را در این دستگاهها "
|
||||
"وارد کنید"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -146,14 +79,8 @@ msgstr "کد اعتبارسنجی"
|
|||
msgid "Authentication Device"
|
||||
msgstr "دستگاه اعتبارسنجی"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "راهاندازی اپلیکیشن اعتبارسنجی"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
|
|
@ -163,16 +90,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "نمیتوانید آن را اسکن کنید؟"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "برای باز کردن اپلیکیشن اعتبارسنجی خود بر روی این لینک کلیک کنید"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "بررسی کد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
|
@ -190,23 +119,24 @@ msgstr "توصیف"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "دستگاه"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "غیرفعالسازی 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "غیر فعال کردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "غیرفعال کردن اعتبارسنجی دو عاملی"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "رها کردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
|
|
@ -223,86 +153,69 @@ msgstr "فعالسازی 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "کد شش رقمی خود را در زیر وارد کنید"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسیریابی HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "تاریخ انقضا"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "قالب کد اعتبارسنجی نامعتبر است. "
|
||||
msgstr "قالب کد اعتبارسنجی نامعتبر است."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "بیشتر بدانید"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "نوع محدود"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "ورود"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "دکمهی «افزودن یک حساب» را بیابید"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "روی فروشگاه اپل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "روی گوگل پلی"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "کد QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "لغو کردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "لغو همه"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -314,22 +227,37 @@ msgstr "دامنه"
|
|||
msgid "Secret"
|
||||
msgstr "محرمانه"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "ارسال ایمیل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "گزارشات مربوط به حد نرخ TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "کد اعتبارسنجی تنها باید شامل اعداد باشد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"برای ورود، کد اعتبارسنجی شش رقمی ارائه شده در اپلیکیشن اعتبارسنجی خود را "
|
||||
"وارد کنید. <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -337,15 +265,12 @@ msgstr "فوق سری"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "دستگاه های قابل اعتماد"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "فعالسازی اعتبارسنجی دو عاملی"
|
||||
|
||||
|
|
@ -356,28 +281,6 @@ msgstr "فعالسازی اعتبارسنجی دو عاملی"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "اعتبارسنجی دو مرحلهای"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"اعتبارسنجی دو عاملی (2FA) یک سیستم اعتبارسنجی دو مرحلهای است.\n"
|
||||
"مرحلهی اول با رمز عبور شما و مرحلهی دوم با کدی انجام میشود که از یک اپلیکیشن تلفن همراه مختص این کار گرفته میشود. \n"
|
||||
"چند نمونه از این اپلیکیشنها عبارتند از برنامه اعتبارسنجی Google، Authy یا برنامهی اعتبارسنجی مایکروسافت."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"اعتبارسنجی دو. عاملی (2FA) یک سیستم اعتبارسنجی دو مرحلهای است. \n"
|
||||
"مرحلهی اول با رمز عبور شما و مرحلهی دوم با کدی که از یک اپلیکیشن تلفن همراه دریافت میکنید.\n"
|
||||
"چند نمونهی رایج از این نمونهها عبارتند از Autyh، برنامهی اعتبارسنجی Google یا برنامهی اعتبارسنجی مایکروسافت."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -386,31 +289,28 @@ msgstr "اعتبارسنجی دو عاملی"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "اعتبارسنجی دوعاملی غیرفعال شد"
|
||||
msgstr "اعتبارسنجی دو عاملی غیرفعال شد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "اعتبارسنجی دوعاملی غیرفعال شد"
|
||||
msgstr "اعتبارسنجی دو عاملی فعال شد"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "اعتبارسنجی دو عاملی از قبل فعال شده است"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "فعالسازی اعتبارسنجی دو عاملی تنها برای شما امکانپذیر است"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "اعتبارسنجی دو عاملی برای کاربر(های) زیر غیر فعال شد: %s"
|
||||
|
||||
|
|
@ -422,26 +322,56 @@ msgstr "آدرس وب"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "کد تاییدیه"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "اعتبارسنجی ناموفق، لطفاً کد 6 رقمی را بازبینی کنید"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "به طور مثال 123456"
|
||||
|
|
|
|||
|
|
@ -1,147 +1,86 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2022
|
||||
# LINUX-SAUNA, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Antti Oksman <antti.oksman@web-veistamo.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jesse Järvi <me@jessejarvi.net>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-17 10:06+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "Selain %(browser)s käyttöjärjestelmässä %(platform)s"
|
||||
msgstr "Selain %(browser)s alustalla %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Kaksivaiheisen tunnistautumisen käyttöönotto"
|
||||
msgstr "Ohjattu kaksivaiheisen tunnistautumisen käyttöönotto"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Kaksivaiheinen tunnistautuminen otettu käyttöön onnistuneesti."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lue lisää"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lue lisää"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Tili suojattu!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Tilisi on suojattu!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Tai asenna vahvistussovellus</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Asenna vahvistussovellus mobiililaitteeseesi</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Skannaa allaoleva QR-koodi sovelluksen pyytäessä sitä</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kopioi alla oleva koodi sovelluksen pyytäessä sitä</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Suosittuja sovelluksia ovat esimerkiksi Microsoft"
|
||||
" Authenticator, Authy tai Google Authenticator</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Tilin tietoturva"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivoi"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen on otettu käyttöön onnistuneesti."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Lisätty"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Käytössä\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Oletko varma? Käyttäjä saattaa joutua syöttämään vahvistuskoodin uudelleen "
|
||||
"laitteessaan"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Poistettu käytöstä\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Oletko varma? Saatat joutua syöttämään vahvistuskoodin uudelleen "
|
||||
"laitteessasi"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Suositellaan turvallisuuden lisäämiseksi.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Lisää tämä avain tunnistautumissovellukseesi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -151,35 +90,31 @@ msgstr "Vahvistuskoodi"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Vahvistuslaite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Vahvistussovelluksen käyttöönotto"
|
||||
msgstr "Varmennuslaite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Etkö saa skannattua QR-koodia?"
|
||||
msgstr "Etkö pysty skannaamaan QR-koodia?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klikkaa tästä avataksesi vahvistussovelluksesi"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Koodin tarkistus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
|
@ -197,23 +132,24 @@ msgstr "Kuvaus"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Laite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä"
|
||||
msgid "Disable"
|
||||
msgstr "Poista käytöstä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Hylkää"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
|
|
@ -230,86 +166,69 @@ msgstr "Ota kaksivaiheinen tunnistautuminen käyttöön"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Kirjoita kuusinumeroinen koodi alle"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Ota käyttöön kaksivaiheinen todennus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-reititys"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Viimeinen voimassaolopäivä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Virheellinen autentikointikoodi."
|
||||
msgstr "Virheellinen tunnistautumiskoodi."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Lue lisää"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Rajoitustyyppi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Kirjaudu sisään"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Etsi \"Lisää tili\"-painike"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Apple App Storessa"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Google Playssä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR-koodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Peruuta valtuutus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Evää kaikki"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Skannaa tämä viivakoodi tunnistautumissovelluksessasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -319,40 +238,53 @@ msgstr "Laajuus"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Salausavain"
|
||||
msgstr "Salainen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Lähetä sähköposti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP-rajoituslokit"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Vahvistuskoodissa tulee olla pekkiä numeroita"
|
||||
msgstr "Vahvistuskoodin tulee sisältää vain numeroita"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Kirjautuaksesi sisään, syötä alle kuusinumeroinen vahvistuskoodi vahvistussovelluksestasi.\n"
|
||||
"Kirjautuaksesi sisään, syötä alle kuusinumeroinen vahvistuskoodi "
|
||||
"varmennussovelluksestasi.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totp Last Counter"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "TOTP-salausavain"
|
||||
msgstr "TOTP-salaus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Luotetut laitteet"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Kaksivaiheisen tunnistautumisen aktivointi"
|
||||
|
||||
|
|
@ -363,32 +295,10 @@ msgstr "Kaksivaiheisen tunnistautumisen aktivointi"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Kaksivaiheinen tunnistautuminen (\"2FA\") on tapa tunnistautua kahdesti.\n"
|
||||
"Kirjautuessa syötetään salasanan lisäksi koodi vahvistussovelluksesta.\n"
|
||||
"Suosittuja sovelluksia ovat esimerkiksi Microsoft Authenticator, Authy sekä Google Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Kaksivaiheinen tunnistautuminen (\"2FA\") on tapa tunnistautua kahdesti.\n"
|
||||
"Kirjautuessa syötetään salasanan lisäksi koodi vahvistussovelluksesta.\n"
|
||||
"Suosittuja sovelluksia ovat esimerkiksi Microsoft Authenticator, Authy sekä Google Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "2-vaiheinen todennus"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
|
|
@ -403,21 +313,18 @@ msgstr "Kaksivaiheinen tunnistautuminen käytössä"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen on jo käytössä"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Voit ottaa kaksivaiheisen tunnistautumisen käyttöön vain itsellesi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Kaksivaiheinen tunnistautuminen on poissa käytöstä seuraavilla käyttäjillä: "
|
||||
|
|
@ -426,31 +333,167 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Verkko-osoite"
|
||||
msgstr "URL"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Vahvistuskoodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Vahvistuskoodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Vahvistus epäonnistui, tarkista kuusinumeroinen koodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Todennus epäonnistui; käytä uusinta 6-numeroista koodia"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Kirjoita sovelluksesi antama koodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Olet saavuttanut tilillesi lähetettyjen todennusviestien enimmäismäärän. "
|
||||
"Yritä myöhemmin uudelleen."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Olet saavuttanut tilisi koodivahvistusten enimmäismäärän. Yritä myöhemmin "
|
||||
"uudelleen."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "esim. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Tai asenna varmennesovellus</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Asenna varmennesovellus mobiililaitteeseesi</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Skannaa allaoleva QR-koodi sovelluksen "
|
||||
#~ "pyydettäessä</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Kopioi alla oleva koodi sovelluksen pyydettäessä</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Suosittuja sovelluksia ovat esimerkiksi "
|
||||
#~ "Microsoft Authenticator, Authy tai Google Authenticator</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Tämä tili on "
|
||||
#~ "suojattu!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Tilisi on "
|
||||
#~ "suojattu!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Lisätty"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Oletko varma? Käyttäjä saattaa joutua syöttämään vahvistuskoodin "
|
||||
#~ "uudelleen laitteisiin"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Oletko varma? Saatat joutua syöttämään vahvistuskoodin uudelleen "
|
||||
#~ "laitteisiin"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Varmennussovelluksen käyttöönotto"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Klikkaa tästä avataksesi varmennussovelluksesi"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Laite"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Kirjoita kuusinumeroinen koodi alle"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Etsi \"Lisää tili\"-painike"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Apple Storessa"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Google Playssä"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Peruuta valtuutus"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Peruuta kaikki"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Kaksivaiheinen tunnistautuminen (\"2FA\") on kaksinkertainen "
|
||||
#~ "tunnistautumisjärjestelmä.\n"
|
||||
#~ "Kirjautuessa syötetään salasanan lisäksi koodi varmennussovelluksesta.\n"
|
||||
#~ "Suosittuja sovelluksia ovat esimerkiksi Microsoft Authenticator, Authy "
|
||||
#~ "sekä Google Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,30 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Manon Rondou (ronm)" <ronm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-18 17:09+0000\n"
|
||||
"Last-Translator: \"Manon Rondou (ronm)\" <ronm@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"fr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s sur %(platform)s"
|
||||
|
||||
|
|
@ -36,106 +35,52 @@ msgstr "Assistant de configuration de l'authentification à 2 facteurs"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "L'authentification à 2 facteurs est maintenant activée."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" En savoir plus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" En savoir plus"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Activé\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ce compte est protégé !</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Votre compte est protégé !</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Ou installez une application d'authentification</span>\n"
|
||||
"<span class=\"d-none d-md-block\">Installez une application d'authentification sur votre appareil mobile</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Lorsque vous y êtes invité, scannez le code-barres ci-dessous</span>\n"
|
||||
"<span class=\"d-block d-md-none\">Lorsque vous y êtes invité, copiez la clé ci-dessous</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Les plus populaires sont Authy, Google "
|
||||
"Authenticator ou Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Sécurité du compte"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activer"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Désactivé\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Ajoute lé"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommandé pour une sécurité accrue.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Êtes-vous sûr ? L'utilisateur peut être invité à saisir à nouveau des codes "
|
||||
"à deux facteurs sur ces appareils."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Êtes-vous sûr ? Il se peut que vous soyez invité à saisir à nouveau des "
|
||||
"codes à deux facteurs sur ces appareils."
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Ajoutez cette clé dans votre application d’authentification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,14 +92,8 @@ msgstr "Code d'identification"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Appareil d'authentification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Configuration de l'application d'authentification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
|
|
@ -164,16 +103,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Vous ne pouvez pas le scanner ?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Cliquez sur ce lien pour ouvrir votre application d'authentification"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Vérification des codes"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
|
@ -191,23 +132,24 @@ msgstr "Description"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Appareil"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Désactiver la 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Désactiver l'authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
|
|
@ -224,86 +166,69 @@ msgstr "Activer la 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Saisissez votre code à six chiffres ci-dessous"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Activer l'authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Routage HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Date d'expiration"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Format de code d'authentification invalide."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "En savoir plus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Type de limite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Recherchez un bouton \"Ajouter un compte\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Sur l'Apple Store "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Sur Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Code QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Révoquer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Révoquer tout"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Scannez ce code-barres dans votre application d’authentification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,22 +240,38 @@ msgstr "Portée"
|
|||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Envoyer un e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Limites d'utilisation de TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Le code de vérification ne doit contenir que des chiffres"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Pour vous connecter, saisissez ci-dessous le code d'authentification à six chiffres fourni par votre application Authenticator.\n"
|
||||
"Pour vous connecter, saisissez ci-dessous le code d'authentification à six "
|
||||
"chiffres fourni par votre application Authenticator.\n"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Dernier compteur TOPT"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -338,15 +279,12 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Appareils de confiance"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activation de l'authentification à deux facteurs"
|
||||
|
||||
|
|
@ -357,28 +295,6 @@ msgstr "Activation de l'authentification à deux facteurs"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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 obtenez depuis une application mobile dédiée.\n"
|
||||
"Les plus populaires sont Authy, Google Authenticator ou Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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 obtenez depuis une application mobile dédiée.\n"
|
||||
"Les plus populaires sont Authy, Google Authenticator ou Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,14 +313,12 @@ msgstr "Authentification à deux facteurs activée"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Authentification à deux facteurs déjà activée"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
"L'authentification à deux facteurs ne peut être activée que pour vous-même"
|
||||
|
|
@ -412,7 +326,6 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Authentification à deux facteurs désactivée pour le(s) utilisateur(s) "
|
||||
|
|
@ -426,26 +339,166 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Code de vérification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Code de vérification"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "La vérification a échoué, veuillez revérifier le code à 6 chiffres"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
"Échec de la vérification, veuillez utiliser le dernier code à 6 chiffres"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Saisissez le code fourni par votre application"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Vous avez atteint la limite d’envois d'e-mails d’authentification pour votre "
|
||||
"compte, veuillez réessayer plus tard."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Vous avez atteint la limite de vérifications de code pour votre compte, "
|
||||
"veuillez réessayer plus tard."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "par ex. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Ou installez une application "
|
||||
#~ "d'authentification</span>\n"
|
||||
#~ "<span class=\"d-none d-md-block\">Installez une application "
|
||||
#~ "d'authentification sur votre appareil mobile</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Lorsque vous y êtes invité, scannez le "
|
||||
#~ "code-barres ci-dessous</span>\n"
|
||||
#~ "<span class=\"d-block d-md-none\">Lorsque vous y êtes invité, copiez la "
|
||||
#~ "clé ci-dessous</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Les plus populaires sont Authy, Google "
|
||||
#~ "Authenticator ou Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Ce compte est "
|
||||
#~ "protégé !</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Votre compte "
|
||||
#~ "est protégé !</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Ajoute lé"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Êtes-vous sûr ? L'utilisateur peut être invité à saisir à nouveau des "
|
||||
#~ "codes à deux facteurs sur ces appareils."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Êtes-vous sûr ? Il se peut que vous soyez invité à saisir à nouveau des "
|
||||
#~ "codes à deux facteurs sur ces appareils."
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Configuration de l'application d'authentification"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr ""
|
||||
#~ "Cliquez sur ce lien pour ouvrir votre application d'authentification"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Périphérique"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Désactiver la 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Saisissez votre code à six chiffres ci-dessous"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Recherchez un bouton \"Ajouter un compte\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Sur l'Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Sur Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Révoquer"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Révoquer tout"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "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 obtenez depuis une application mobile dédiée.\n"
|
||||
#~ "Les plus populaires sont Authy, Google Authenticator ou Microsoft "
|
||||
#~ "Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,420 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,34 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Leandro Noijovich <eliel.sorcerer@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# or balmas, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"he/>\n"
|
||||
"Language: 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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,87 +34,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "אבטחת חשבון"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "הפעל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "נוסף ב"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -133,14 +80,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
|
|
@ -150,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
|
@ -177,23 +120,24 @@ msgstr "תיאור"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "התקן"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "השבת"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
|
|
@ -210,86 +154,69 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "ניתוב HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "תאריך תפוגה"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "למד עוד"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "התחבר"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "בחנות אפל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "בחנות גוגל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "לבטל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "הסר הכל"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -301,20 +228,35 @@ msgstr "תחום"
|
|||
msgid "Secret"
|
||||
msgstr "סוד"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "שלח דוא\"ל"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -322,15 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -341,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "הזדהות בשני שלבים"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -375,21 +298,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -401,26 +321,56 @@ msgstr "כתובת אתר אינטרנט"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,33 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
msgstr "%(platform)s पर %(browser)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
|
|
@ -37,87 +33,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "ऐक्टिवेट"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -128,16 +77,10 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
msgstr "पुष्टि करने वाला डिवाइस"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द"
|
||||
|
||||
|
|
@ -147,16 +90,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
msgstr "इन्होंने बनाया"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
|
|
@ -174,25 +119,26 @@ msgstr "विवरण"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "बंद करें"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "खारिज करें"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -207,111 +153,109 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "खत्म होने की तारीख"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "आईपी"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
msgstr "क्यूआर कोड"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "वापस लें"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "स्कोप"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "सीक्रेट"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "ईमेल भेजें"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -319,15 +263,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -338,22 +279,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -372,52 +297,79 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
msgstr "यूआरएल"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,32 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Vojislav Opačić <vojislav.opacic@gmail.com>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Luka Carević <luka@uvid.hr>, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Luka Carević <luka@uvid.hr>, 2025\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/hr/>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,87 +34,43 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Preporučeno za dodatnu sigurnost.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiviraj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -131,14 +83,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
|
|
@ -148,16 +94,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
|
@ -175,23 +123,24 @@ msgstr "Opis"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Uređaj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Onemogući"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Odbaci"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
|
|
@ -208,85 +157,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmjeravanje"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Datum isteka"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prijava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "U Apple storu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Na Google play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Opozovi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -297,22 +229,37 @@ msgstr "Opseg"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Pošalji e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -320,15 +267,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -339,25 +283,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvofaktorska autentifikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dvofaktorska autentifikacija (2FA) je sustav dvostruke provjere identiteta. \n"
|
||||
" Prva provjera se vrši pomoću vaše lozinke, a druga pomoću koda koji dobivate iz posebne mobilne aplikacije.\n"
|
||||
" Popularne aplikacije su Authy, Google Authenticator i Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -366,31 +291,28 @@ msgstr "Dvofaktorska autentifikacija"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
msgstr "Dvofaktorska autentifikacija onemogućena"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
msgstr "Dvofaktorska autentifikacija omogućena"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -402,26 +324,56 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# A . <tibor@inventati.org>, 2022
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
# Tamás Dombos, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tamás Dombos, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/hu/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s %(platform)splatformon"
|
||||
|
||||
|
|
@ -42,117 +34,56 @@ msgstr "Kétlépcsős azonosítás varázsló"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Kétfaktoros alkalmazás bekapcsolva."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">A fiókja most már védve van!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Vagy telepíts egy autentikátor alkalmazást</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Autentikátor alkalmazás telepítése mobileszközre</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Kérésre szkennelje be az alábbi vonalkódot</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kérdésre gépelje be a az alábbi kódot</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"Népszerű alkalmazások az Authy, a Google Authenticator és a Microsoft "
|
||||
"Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Jelszó kezelése"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivál"
|
||||
msgstr "Kétlépcsős azonosítás bekapcsolva."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Hozzáadva"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Autentikációs kód"
|
||||
msgstr "Hitelesítő kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Hitelesítő eszköz"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Autentikátor alkalmazás beállítása"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
msgstr "Visszavonás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -160,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Nem tudja beszkennelni?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kattintson erre a linkre az autentikátor alkalmazás megnyitásához"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
|
@ -187,23 +120,24 @@ msgstr "Leírás"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Eszköz"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Kétlépcsős azonosítás kikapcsolása"
|
||||
msgid "Disable"
|
||||
msgstr "Letiltás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Kétfaktoros alkalmazás kikapcsolása"
|
||||
msgstr "Kétlépcsős azonosítás kikapcsolása"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Elvetés"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
|
|
@ -216,90 +150,73 @@ msgstr "Ne kérje többet ezen az eszközön"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Kétfaktoros hitelesítés bekapcsolása"
|
||||
msgstr "Kétlépcsős azonosítás bekapcsolása"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Adja meg a hatszámjegyű kódot"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP irányítás"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Lejárat dátuma"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Hitelesítő kód formátuma érvénytelen."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Tudjon meg többet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Bejelentkezés"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Keresse meg a \"Fiók hozzáadása\" gombot"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Az App Store-ban"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "A Google Play-en"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR-kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Visszavonás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Összes visszavonása"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -311,22 +228,37 @@ msgstr "Hatáskör"
|
|||
msgid "Secret"
|
||||
msgstr "Titok"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "E-mail küldés"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "A hitelesítő kód csak számokat tartalmazhat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"A belépéshez adja meg az Autentikátor alkalmazás által adott 6-jegyű "
|
||||
"A belépéshez adja meg az Autentikátor alkalmazás által generált 6-jegyű "
|
||||
"belépési kódot."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -334,15 +266,12 @@ msgstr "Totp titok"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Megbízható eszköz"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Kétlépcsős azonosítás aktiválása"
|
||||
|
||||
|
|
@ -353,25 +282,6 @@ msgstr "Kétlépcsős azonosítás aktiválása"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Kétlépcsős azonosítás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"A kétlépcsős azonosítás (\"2FA\") egy kettős azonosítási rendszer.\n"
|
||||
" Első lépésben a felhasználó a saját jelszavával jelentkezik be, majd második lépésben a mobil eszközére telepített alkalmazás által generált kódot kell megadnia.\n"
|
||||
" Népszerű alkalmazások az Authy, a Google Authenticator és a Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -390,21 +300,18 @@ msgstr "Kétlépcsős azonosítás bekapcsolva"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Kétlépcsős azonosítás már engedélyezve van"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "A kétlépcsős azonosítást csak saját magának kapcsolhatja be"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "A kétlépcsős azonosítás kikapcsolva ezeneknél a felhasználóknál: %s"
|
||||
|
||||
|
|
@ -416,26 +323,117 @@ msgstr "Webcím"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Ellenőrző kód"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Az ellenőrzés sikertelen, ellenőrizze a 6 számjegyzű kódot"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "pl.: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Vagy telepítsen egy autentikátor "
|
||||
#~ "alkalmazást</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Autentikátor alkalmazás telepítése mobileszközre</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Kérésre szkennelje be az alábbi "
|
||||
#~ "vonalkódot</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Kérdésre gépelje be a az alábbi kódot</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "Népszerű alkalmazások az Authy, a Google Authenticator és a Microsoft "
|
||||
#~ "Authenticator"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Hozzáadva"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Autentikátor alkalmazás beállítása"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Kattintson erre a linkre az autentikátor alkalmazás megnyitásához"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Eszköz"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Kétlépcsős azonosítás kikapcsolása"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Adja meg a hatjegyű kódot"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Keresse a \"Fiók hozzáadása\" gombot"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Az App Store-ban"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "A Google Play-en"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Visszavonás"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Összes visszavonása"
|
||||
|
|
|
|||
|
|
@ -1,30 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Abe Manyo (abem)" <abem@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/id/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s pada %(platform)s"
|
||||
|
||||
|
|
@ -36,106 +35,52 @@ msgstr "2-Factor Setup Wizard"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Autentikasi 2-Faktor sekarang diaktifkan."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentasi\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Pelajari Lebih"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentasi\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Pelajari Lebih"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Diaktifkan\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Akun ini dilindungi!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Akun Anda dilindungi!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Atau instal aplikasi autentikator</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instal aplikasi autentikator pada perangkat mobile Anda</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Saat diminta, scan barcode dibawah</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Saat diminta, salin kunci di bawah</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Pilihan populer termasuk Authy, Google "
|
||||
"Authenticator atau Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Keamanan Akun"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktifkan"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Dinonaktifkan\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Ditambahkan Pada"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Direkomendasikan untuk keamanan ekstra.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Apakah Anda yakin? User mungkin diminta untuk memasukkan kode dua-faktor "
|
||||
"lagi pada perangkat tersebut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Apakah Anda yakin? Anda mungkin diminta untuk memasukkan kode dua-faktor "
|
||||
"lagi pada perangkat tersebut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,14 +92,8 @@ msgstr "Kode Autentikasi"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Perangkat Autentikasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Setup Aplikasi Autentikator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
|
|
@ -164,16 +103,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Tidak dapat scan?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klik pada link ini untuk membuka aplikasi autentikator Anda"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Pemeriksaan Kode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
|
@ -191,30 +132,31 @@ msgstr "Deskripsi"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Perangkat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Nonaktifkan 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Nonaktifkan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Nonaktifkan autentikasi dua-faktor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Jangan tanyakan lagi untuk perangkat ini"
|
||||
msgstr "Jangan tanya lagi perangkat ini"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
|
|
@ -224,86 +166,69 @@ msgstr "Aktifkan 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Masukkan kode enam-digit di bawah"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Aktifkan Autentikasi Dua-Faktor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Tanggal Kedaluwarsa"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Format kode autentikasi tidak valid."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
msgstr "Terakhir Diperbarui oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Pelajari Lebih"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipe Limit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Log masuk"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Cari tombol \"Tambahkan akun\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Pada Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Pada Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Cabut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Cabut Semua"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,22 +240,38 @@ msgstr "Lingkup"
|
|||
msgid "Secret"
|
||||
msgstr "Rahasia"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Kirim Email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP rate limit logs"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Kode verifikasi harus hanya memiliki angka"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Untuk login, masukkan di bawah kode autentikasi 6-digit yang disediakan aplikasi Autentikator Anda.\n"
|
||||
"Untuk login, masukkan di bawah kode autentikasi 6-digit yang disediakan "
|
||||
"aplikasi Autentikator Anda.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totp Last Counter"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -338,15 +279,12 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Perangkat Terpercaya"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Aktifvasi Autentikasi Dua-Faktor"
|
||||
|
||||
|
|
@ -357,28 +295,6 @@ msgstr "Aktifvasi Autentikasi Dua-Faktor"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autentikasi Dua-faktor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autentikasi Dua-Faktor (\"2FA\") adalah sistem autentikasi dua kali.\n"
|
||||
" Autentikasi pertama dilakukan dengan password Anda dan yang kedua dilakukan dengan kode yang Anda dapat dari aplikasi mobile khusus.\n"
|
||||
" Aplikasi populer termasuk Authy, Google Authenticator atau Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autentikasi Dua-Faktor (\"2FA\") adalah sistem autentikasi dua kali.\n"
|
||||
" Autentikasi pertama dilakukan dengan password Anda dan yang kedua dilakukan dengan kode yang Anda dapat dari aplikasi mobile khusus.\n"
|
||||
" Aplikasi populer termasuk Authy, Google Authenticator atau Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,21 +313,18 @@ msgstr "Autentikasi dua-faktor Diaktifkan"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Autentikasi dua-faktor sudah diaktifkan"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Autentikasi dua-faktor hanya dapat diaktifkan oleh Anda"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Autentikasi dua-faktor dibatalkan untuk user-user berikut: %s"
|
||||
|
||||
|
|
@ -423,26 +336,163 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Kode Verifikasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verifikasi gagal, mohon periksa ulang kode 6-digit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Verifikasi gagal, silakan gunakan kode 6-digit terakhir"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Anda mencapai batas email autentikasi yang dikirim untuk akun Anda, silakan "
|
||||
"coba lagi nanti."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Anda mencapai batas verifikasi kode untuk akun Anda, silakan coba lagi nanti."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "contoh 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Atau instal aplikasi autentikator</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instal aplikasi autentikator pada perangkat mobile Anda</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Saat diminta, scan barcode dibawah</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Saat diminta, salin kunci di bawah</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Pilihan populer termasuk Authy, Google "
|
||||
#~ "Authenticator atau Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Akun ini "
|
||||
#~ "dilindungi!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Akun Anda "
|
||||
#~ "dilindungi!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Ditambahkan Pada"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Apakah Anda yakin? User mungkin diminta untuk memasukkan kode dua-faktor "
|
||||
#~ "lagi pada perangkat tersebut"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Apakah Anda yakin? Anda mungkin diminta untuk memasukkan kode dua-faktor "
|
||||
#~ "lagi pada perangkat tersebut"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Setup Aplikasi Autentikator"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Klik pada link ini untuk membuka aplikasi autentikator Anda"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Perangkat"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Nonaktifkan 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Masukkan kode enam-digit di bawah"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Cari tombol \"Tambahkan akun\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Pada Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Pada Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Cabut"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Cabut Semua"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Autentikasi Dua-Faktor (\"2FA\") adalah sistem autentikasi dua kali.\n"
|
||||
#~ " Autentikasi pertama dilakukan dengan password "
|
||||
#~ "Anda dan yang kedua dilakukan dengan kode yang Anda dapat dari aplikasi "
|
||||
#~ "mobile khusus.\n"
|
||||
#~ " Aplikasi populer termasuk Authy, Google "
|
||||
#~ "Authenticator atau Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,443 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s á %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "2-þátta uppsetningarhjálp"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-þátta auðkenning er nú virkjuð."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Læra meira</i>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Eða settu upp auðkenningarapp</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Settu upp auðkenningarforrit á farsímanum þínum</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Þegar beðið er um það, skannaðu strikamerkið hér að neðan.</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Afritaðu lykilinn hér að neðan</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Vinsælir eru Authy, Google Authenticator eða "
|
||||
"Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Aðgangsöryggi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Virkja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Bætt við"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Ertu viss? Notandinn gæti verið beðinn um að slá inn tveggja þátta kóða "
|
||||
"aftur á þessum tækjum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Ertu viss? Þú gætir verið beðinn um að slá inn tveggja þátta kóða aftur á "
|
||||
"þessum tækjum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Auðkenningarkóði"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Auðkenningartæki"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Authenticator App Uppsetning"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Eyða"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Er ekki hægt að skanna það?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Smelltu á þennan hlekk til að opna auðkenningarforritið þitt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Stofndagur"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Lýsing"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Tæki"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Slökkva á 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Slökkva á tveggja þátta auðkenningu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Ekki spyrja aftur í þessu tæki"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Virkja 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Sláðu inn sex stafa kóðann þinn hér að neðan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Ógilt snið auðkenningarkóða."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Skoða nánar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Innskrá"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Leitaðu að hnappinum „Bæta við reikningi“"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Í Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Á Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Hætt við"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Afturkalla allt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Umfang"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Leyndarmál"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Staðfestingarkóði ætti aðeins að innihalda tölur"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Til að skrá þig inn skaltu slá inn sex stafa auðkenningarkóðann fyrir neðan frá Authenticator appinu þínu.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp leyndarmál"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Traust tæki"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Virkjun tveggja þátta auðkenningar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Tveggja þátta auðkenning"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Tvíþátta auðkenning (\"2FA\") er kerfi tvöfaldrar auðkenningar.\n"
|
||||
" Hið fyrra er gert með lykilorðinu þínu og það síðara með kóða sem þú færð úr sérstöku farsímaforriti.\n"
|
||||
" Vinsælir eru Authy, Google Authenticator eða Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Tvíþátta auðkenning (\"2FA\") er kerfi tvöfaldrar auðkenningar.\n"
|
||||
" Hið fyrra er gert með lykilorðinu þínu og það síðara með kóða sem þú færð úr sérstöku farsímaforriti.\n"
|
||||
" Vinsælir eru Authy, Google Authenticator eða Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Tveggja þátta auðkenning"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Tvíþætt auðkenning óvirk"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Tvíþætt auðkenning virkjuð"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Tvíþætt auðkenning þegar virkjuð"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Aðeins er hægt að virkja tvíþætta auðkenningu fyrir sjálfan þig"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Tvíþætt auðkenning óvirk fyrir eftirfarandi notendur: %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Staðfestingarkóði"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Staðfesting mistókst. Athugaðu 6 stafa kóðann"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "t.d. 123456"
|
||||
|
|
@ -1,30 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sebastiano Picchi, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marianna Ciofani (cima)" <cima@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2024\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-15 09:13+0000\n"
|
||||
"Last-Translator: \"Marianna Ciofani (cima)\" <cima@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/it/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s su %(platform)s"
|
||||
|
||||
|
|
@ -36,106 +34,52 @@ msgstr "Procedura di impostazione 2 fattori"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "L'autenticazione a 2 fattori è ora abilitata."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentazione\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Scopri di più"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentazione\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Scopri di più"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Attivato\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Questo account è protetto!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Il tuo account è protetto!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">O installa un'app di autenticazione</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Installa un'app di autenticazione sul tuo dispositivo mobile</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Quando è richiesto, scannerizza il codice a barre qui sotto</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Quando è richiesto di farlo, copia la chiave qui sotto</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">I più popolari includono Authy, Google "
|
||||
"Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Sicurezza account"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Attiva"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disattivato\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Aggiunto il"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Consigliato per una maggiore sicurezza.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Sei sicuro/a? All'utente potrebbe essere richiesto di inserire nuovamente "
|
||||
"codici a due fattori su quei dispositivi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Sei sicuro/a? Ti potrebbe essere richiesto di inserire nuovamente codici a "
|
||||
"due fattori su quei dispositivi"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Aggiungi questa chiava alla tua app di autenticazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,14 +91,8 @@ msgstr "Codice di autenticazione"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo di autenticazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Impostazione Authenticator App"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
|
|
@ -164,16 +102,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Non si può scannerizzare?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Clicca su questo link per aprire la tua app di autenticazione"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Controllo codice"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
|
@ -191,23 +131,24 @@ msgstr "Descrizione"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Disattiva 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Disattiva"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Disabilita autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
|
|
@ -224,86 +165,69 @@ msgstr "Attiva 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Inserisci il tuo codice a sei cifre qui sotto"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Abilita autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Instradamento HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data di scadenza"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Formato non valido del codice di autenticazione."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Scopri di più"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Limit Type"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Accedi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Cerca un pulsante \"Aggiungi un account\"."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Su Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Su Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Codice QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revoca"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Revoca tutto"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Scansiona questo codice a barre nella tua app di autenticazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,22 +239,38 @@ msgstr "Ambito"
|
|||
msgid "Secret"
|
||||
msgstr "Chiave privata"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Invio e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP rate limit logs"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Il codice di verifica deve contenere solo numeri"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Per accedere, inserisci qui sotto il codice di autenticazione a sei cifre fornito dalla tua app di autenticazione..\n"
|
||||
"Per accedere, inserisci qui sotto il codice di autenticazione a sei cifre "
|
||||
"fornito dalla tua app di autenticazione..\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Ultimo contatore TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -338,15 +278,12 @@ msgstr "Chiave privata TOTP"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispositivi fidati"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Attivazione dell'autenticazione a due fattori"
|
||||
|
||||
|
|
@ -357,28 +294,6 @@ msgstr "Attivazione dell'autenticazione a due fattori"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"L'autenticazione a due fattori (\"2FA\") è un sistema di doppia autenticazione.\n"
|
||||
"La prima è fatta con la tua password e la seconda con un codice che ottieni tramite un'applicazione mobile dedicata.\n"
|
||||
"I più popolari includono Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"L'autenticazione a due fattori (\"2FA\") è un sistema di doppia autenticazione.\n"
|
||||
" La prima è fatta con la tua password e la seconda con un codice che ottieni tramite un'applicazione mobile dedicata.\n"
|
||||
" più popolari includono Authy, Google Authenticator o Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,22 +312,18 @@ msgstr "Autenticazione a due fattori abilitata"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Autenticazione a due fattori già abilitata"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
"L'autenticazione a due fattori può essere abilitata solo per se stessi"
|
||||
msgstr "L'autenticazione a due fattori può essere abilitata solo per se stessi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Autenticazione a due fattori disabilitata per i seguenti utenti: %s"
|
||||
|
||||
|
|
@ -424,26 +335,165 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Codice di verifica"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Codice di verifica"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verifica non riuscita, ricontrollare il codice a 6 cifre"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Verifica non riuscita, usa il codice a 6 cifre più recente"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Scrivi il codice fornito dalla tua app"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Hai raggiunto il limite di email di autenticazione inviate per il tuo "
|
||||
"account, prova di nuovo più tardi."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Hai raggiunto il limite di codici di verifica per il tuo account, prova di "
|
||||
"nuovo più tardi."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "es. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">O installa un'app di autenticazione</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Installa un'app di autenticazione sul tuo dispositivo mobile</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Quando è richiesto, scannerizza il "
|
||||
#~ "codice a barre qui sotto</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Quando è richiesto di farlo, copia la chiave qui sotto</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">I più popolari includono Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Questo account "
|
||||
#~ "è protetto!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Questo account "
|
||||
#~ "è protetto!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Aggiunto il"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Sei sicuro/a? All'utente potrebbe essere richiesto di inserire nuovamente "
|
||||
#~ "codici a due fattori su quei dispositivi"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Sei sicuro/a? Ti potrebbe essere richiesto di inserire nuovamente codici "
|
||||
#~ "a due fattori su quei dispositivi"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Impostazione Authenticator App"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Clicca su questo link per aprire la tua app di autenticazione"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositivo"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Disattiva 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Inserisci il tuo codice a sei cifre qui sotto"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Cerca un pulsante \"Aggiungi un account\"."
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Su Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Su Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revoca"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Revoca tutto"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "L'autenticazione a due fattori (\"2FA\") è un sistema di doppia "
|
||||
#~ "autenticazione.\n"
|
||||
#~ " La prima è fatta con la tua password e la seconda "
|
||||
#~ "con un codice che ottieni tramite un'applicazione mobile dedicata.\n"
|
||||
#~ " più popolari includono Authy, Google "
|
||||
#~ "Authenticator o Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,32 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 江口和志 <sandwhale1010@gmail.com>, 2022
|
||||
# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 08:48+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/ja/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s (%(platform)s上)"
|
||||
|
||||
|
|
@ -38,102 +34,53 @@ msgstr "2要素設定ウィザード"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2要素承認が可能になりました"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" さらに詳しく知る"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" さらに詳しく知る"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" 有効\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">このアカウントは保護されています!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">お客様のアカウントは保護されています!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">または、認証アプリをインストール</span>\n"
|
||||
" <span class=\"d-none d-md-block\">モバイルデバイスに認証アプリをインストール</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">要求された時に下のバーコードをスキャンする</span>\n"
|
||||
" <span class=\"d-block d-md-none\">要求された時に下のキーをコピーする</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">よく利用されるものにAuthy、Google Authenticator、Microsoft "
|
||||
"Authenticatorなどがあります。</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "アカウントセキュリティ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "有効化"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" 無効化済\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "以下に追加"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" さらに追加でセキュリティを強化するために推奨され"
|
||||
"ます。\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr "本当によろしいですか?これらのデバイスで再度2要素コードの入力を求められる場合があります。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr "本当によろしいですか?これらのデバイスで再度2要素コードの入力を求められる場合があります"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "このキーを認証アプリに追加してください"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -143,18 +90,12 @@ msgstr "承認コード"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "承認デバイス"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "認証アプリのセットアップ"
|
||||
msgstr "認証デバイス"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -162,16 +103,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "読み取れませんか?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "このリンクをクリックして承認アプリを開く"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "コード確認中"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
|
@ -189,23 +132,24 @@ msgstr "説明"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "デバイス"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FAを無効化する"
|
||||
msgid "Disable"
|
||||
msgstr "無効化する"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "2要素認証を無効化"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "破棄"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
|
|
@ -222,86 +166,69 @@ msgstr "2FAを有効にする"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "下欄に6桁のコードを入力してください"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "2要素認証を有効化する"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTPルーティング"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "有効期限日"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "無効な承認コードフォーマット"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "もっと知る"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "制限タイプ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "ログイン"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "「アカウントを追加」ボタンを見つける"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "アップルストアにて"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Google Playにて"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QRコード"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "取り消す"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "全て取消"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "このバーコードを認証アプリでスキャンしてください"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -313,22 +240,38 @@ msgstr "スコープ"
|
|||
msgid "Secret"
|
||||
msgstr "シークレット"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "メールを送信"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTPレート制限ログ"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "認証コードは数字のみです"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"ログインするには、認証アプリが提供する 6 桁の認証コードを以下に入力して下さい。\n"
|
||||
"ログインするには、認証アプリが提供する 6 桁の認証コードを以下に入力して下さ"
|
||||
"い。\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "TOTP 最終カウンタ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -336,15 +279,12 @@ msgstr "Totpシークレット"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "信頼されたデバイス"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "2要素認証の有効化"
|
||||
|
||||
|
|
@ -355,27 +295,6 @@ msgstr "2要素認証の有効化"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "2要素認証"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"二要素認証(以下、2FA)とは、二重に認証を行うシステムです。1つ目はパスワードで、2つ目は専用のモバイルアプリから取得したコードで認証します。代表的なものに、Authy、Google"
|
||||
" Authenticator、Microsoft Authenticatorなどがあります。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"2要素認証(以下、2FA)とは、二重に認証を行うシステムです。\n"
|
||||
"1つ目はパスワードで、2つ目は専用のモバイルアプリから取得したコードで認証します。\n"
|
||||
"人気のあるものには、Authy、Google Authenticator、Microsoft Authenticatorなどがあります。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -394,21 +313,18 @@ msgstr "2要素認証有効"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "2要素認証がすでに有効です"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "2要素認証はご本人にのみ有効化されます"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "次のユーザの2要素認証が無効化されました: %s"
|
||||
|
||||
|
|
@ -420,26 +336,160 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "認証コード"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "認証コード"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "認証が失敗しました。6桁のコードを再度確認してください。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "認証が失敗しました。最新の6桁のコードを使用してください"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "アプリから与えられたコードを書く"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr "アカウントの認証メール送信制限に達しました。後ほど再度お試しください。"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"アカウントのコード確認回数の上限に達しました。後ほど再度お試しください。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "例: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">または、認証アプリをインストール</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-none d-md-block\">"
|
||||
#~ "モバイルデバイスに認証アプリをインストール</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">要求された時に下のバーコードをスキャンす"
|
||||
#~ "る</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">要求"
|
||||
#~ "された時に下のキーをコピーする</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">よく利用されるものにAuthy、Google "
|
||||
#~ "Authenticator、Microsoft Authenticatorなどがあります。</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">このアカウントは"
|
||||
#~ "保護されています!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">アカウントは保護"
|
||||
#~ "されています!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "以下に追加"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "本当によろしいですか?これらのデバイスで再度2要素コードの入力を求められる"
|
||||
#~ "場合があります。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "本当によろしいですか?これらのデバイスで再度2要素コードの入力を求められる"
|
||||
#~ "場合があります"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "認証アプリのセットアップ"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "このリンクをクリックして承認アプリを開く"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "デバイス"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "2FAを無効化する"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "下欄に6桁のコードを入力してください"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "「アカウントを追加」ボタンを見つける"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "アップルストアにて"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Google Playにて"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "取り消す"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "すべて取消"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "2要素認証(以下、2FA)とは、二重に認証を行うシステムです。\n"
|
||||
#~ "1つ目はパスワードで、2つ目は専用のモバイルアプリから取得したコードで認証し"
|
||||
#~ "ます。\n"
|
||||
#~ "人気のあるものには、Authy、Google Authenticator、Microsoft Authenticatorな"
|
||||
#~ "どがあります。"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:22+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"kab/>\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -27,88 +32,42 @@ msgid "2-Factor Setup Wizard"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -121,16 +80,10 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -138,40 +91,36 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
msgstr "Azemz n tmerna"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "Aglam"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -179,9 +128,16 @@ msgstr ""
|
|||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -198,84 +154,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -289,18 +229,34 @@ msgid "Secret"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -308,14 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -326,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -358,50 +296,81 @@ msgid "Two-factor authentication Enabled"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "Aseqdac"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,31 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linkup <link-up@naver.com>, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-23 07:38+0000\n"
|
||||
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"ko/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(platform)s의 %(browser)s"
|
||||
|
||||
|
|
@ -37,102 +34,45 @@ msgstr "2단계 설정 마법사"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "이제 2단계 인증을 사용할 수 있습니다."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 자세히 알아보기"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 자세히 알아보기"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">계정이 보호됩니다!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">귀하의 계정이 보호됩니다!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">또는 인증 앱을 설치하십시오</span>\n"
|
||||
" <span class=\"d-none d-md-block\">모바일 장치에 인증 앱을 설치하십시오</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">요청 시 아래의 바코드 스캔</span>\n"
|
||||
" <span class=\"d-block d-md-none\">요청 시 아래의 키 복사</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">가장 많이 사용되는 방법으로는 Authy, Google 인증 또는 Microsoft "
|
||||
"인증이 있습니다.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "계정 보안"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "활성화"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" 불가\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "추가되었습니다"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr "다시 확인하세요. 사용자에게 해당 장치에서 2단계 코드를 다시 입력하라는 메시지가 전송될 수 있습니다."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr "다시 확인하세요. 해당 기기에서 2단계 코드를 다시 입력하라는 메시지가 표시될 수 있습니다."
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -144,14 +84,8 @@ msgstr "인증 코드"
|
|||
msgid "Authentication Device"
|
||||
msgstr "인증 장치"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "인증 앱 설정"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
|
|
@ -161,16 +95,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "스캔할 수 없습니까?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "인증 앱을 열려면 이 링크를 클릭하세요"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "코드 확인 중"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
|
@ -188,23 +124,24 @@ msgstr "설명"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "장치"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "이중 인증 비활성화"
|
||||
msgid "Disable"
|
||||
msgstr "비활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "이중 인증 비활성화"
|
||||
msgstr "2단계 인증 비활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "작성 취소"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
|
|
@ -217,90 +154,73 @@ msgstr "이 기기에서 다시 묻지 않음"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "이중 인증 활성화"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "아래에 6자리 코드를 입력하세요"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 라우팅"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "만료일"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "잘못된 인증 코드 형식입니다."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "추가 정보"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "제한 유형"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "로그인"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "\"계정 추가\" 버튼을 찾습니다"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "애플 앱스토어"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "구글 플레이"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR 코드"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "폐지"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "전부 취소"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -312,22 +232,37 @@ msgstr "범위"
|
|||
msgid "Secret"
|
||||
msgstr "비밀"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "이메일 보내기"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP 사용 제한 사항"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "인증 코드는 숫자만 포함될 수 있습니다"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"로그인하려면 인증앱에서 전송한 6자리 인증 코드를 아래에 입력하십시오..\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totp 최종 카운터"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -335,15 +270,12 @@ msgstr "기밀"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "신뢰할 수 있는 디바이스"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
|
|
@ -352,65 +284,40 @@ msgstr "2단계 인증 활성화"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "이중 인증"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"이중 인증 (Two-factor Authentication, \"2FA\")이란 이중으로 인증 절차를 진행하는 시스템입니다.\n"
|
||||
" 첫번째는 비밀번호를 통해서 그리고 두번째는 전용 모바일 앱에서 받은 코드로 인증이 이루어집니다.\n"
|
||||
" 가장 많이 사용되는 인증 방법으로는 Authy, Google 인증 또는 Microsoft 인증을 사용합니다."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"이중 인증 (Two-factor Authentication, \"2FA\")이란 이중으로 인증 절차를 진행하는 시스템입니다.\n"
|
||||
" 첫번째는 비밀번호를 통해서 그리고 두번째는 전용 모바일 앱에서 받은 코드로 인증이 이루어집니다.\n"
|
||||
" 가장 많이 사용되는 인증 방법으로는 Authy, Google 인증 또는 Microsoft 인증을 사용합니다."
|
||||
msgstr "2단계 인증"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "이중 인증"
|
||||
msgstr "2단계 인증"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "이중 인증이 비활성화되었습니다"
|
||||
msgstr "2단계 인증 비활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "이중 인증을 사용할 수 있습니다"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "이중 인증이 이미 활성화되어 있습니다"
|
||||
msgstr "2단계 인증이 이미 활성화되어 있습니다"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "2단계 인증은 본인만 활성화할 수 있습니다"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "다음 사용자에 대해 이중 인증이 비활성화됨: %s"
|
||||
msgstr "다음 사용자에 대해 2단계 인증이 비활성화됨: %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
|
|
@ -420,26 +327,160 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "인증 코드"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "인증 코드"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "인증에 실패했습니다. 6자리 코드를 다시 확인하세요."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "인증에 실패했습니다. 가장 최근에 수신한 6자리 코드를 사용하세요."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"계정에 대한 인증 이메일 최대 전송 수를 초과했습니다. 나중에 다시 시도하세요."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"계정 인증용 코드 요청이 최대 요청 수를 초과했습니다. 나중에 다시 시도하세요."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "예: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">또는 인증 앱을 설치하십시오</span>\n"
|
||||
#~ " <span class=\"d-none d-md-block\">"
|
||||
#~ "모바일 장치에 인증 앱을 설치하십시오</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">요청 시 아래의 바코드 스캔</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">요"
|
||||
#~ "청 시 아래의 키 복사</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">가장 많이 사용되는 방법으로는 Authy, Google 인"
|
||||
#~ "증 또는 Microsoft 인증이 있습니다.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">이 계정은 보호되"
|
||||
#~ "고 있습니다.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">귀하의 계정은 보"
|
||||
#~ "호되고 있습니다.</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "추가되었습니다"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "다시 확인하세요. 사용자에게 해당 장치에서 2단계 코드를 다시 입력하라는 메"
|
||||
#~ "시지가 전송될 수 있습니다."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "다시 확인하세요. 해당 기기에서 2단계 코드를 다시 입력하라는 메시지가 표시"
|
||||
#~ "될 수 있습니다."
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "인증 앱 설정"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "인증 앱을 열려면 이 링크를 클릭하세요"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "장치"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "2단계 인증 비활성화"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "아래에 6자리 코드를 입력하세요"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "\"계정 추가\" 버튼을 찾습니다"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "애플 앱스토어"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "구글 플레이"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "폐지"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "전부 취소"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "2단계 인증 (Two-factor Authentication, \"2FA\")이란 로그인 시 추가로 인증 "
|
||||
#~ "절차를 진행하는 이중 보안 서비스입니다.\n"
|
||||
#~ " 아이디와 비밀번호로 로그인한 후, 사전에 등록했던 "
|
||||
#~ "모바일 앱을 통해 받은 코드를 입력하면 추가 인증이 이루어집니다.\n"
|
||||
#~ " 가장 많이 사용되는 인증 방법으로는 Authy, Google 인"
|
||||
#~ "증 또는 Microsoft 인증이 있습니다."
|
||||
|
|
|
|||
375
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ku.po
Normal file
375
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ku.po
Normal file
|
|
@ -0,0 +1,375 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_totp/ckb/>\n"
|
||||
"Language: ku\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s لەسەر %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Cancel"
|
||||
msgstr "ڕەتکردنەوە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "ناتوانرێت سکانی بکات؟"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "پشکنینی کۆد"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "دروستکراوە لەلایەن..."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "دروستکراوە لە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "بەرواری دروستکردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "وەسف"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable"
|
||||
msgstr "ناچالاک کردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "ڕەتکردنەوە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "جارێکی تر لەسەر ئەم ئامێرە پرسیار مەکە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "بەرواری بەسەرچوون"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "دوایین نوێکردنەوە لەلایەن..."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "دوایین نوێکردنەوە لە..."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "زیاتر بزانە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "جۆری سنووردارکردن"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "چوونەژوورەوە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "مەودا"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "نهێنی"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "ئیمەیڵ بنێرە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "کۆدی پشتڕاستکردنەوە تەنها ژمارەی تێدابێت"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
msgid "Trusted Devices"
|
||||
msgstr "ئامێرە متمانەپێکراوەکان"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "بەکارهێنەر"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
msgid "Verification Code"
|
||||
msgstr "کۆدی پشتڕاستکردنەوە"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "پشتڕاستکردنەوە شکستی هێنا، تکایە دووجار کۆدی 6 ژمارەیی بپشکنە"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,422 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "ເປີດໃຊ້ງານ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "ຍົກເລີກ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "ວັນທີສ້າງ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "ຄຳອະທິບາຍ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2022
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/lt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -42,91 +35,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Sužinoti daugiau"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Sužinoti daugiau"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Paskyros sauga"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktyvuoti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -137,16 +79,10 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
msgstr "Autentifikavimo prietaisas"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
|
|
@ -156,16 +92,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
|
@ -183,23 +121,24 @@ msgstr "Aprašymas"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Įrenginys"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Išjungti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Išjungti Dviejų Žingsnių Autentifikaciją"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Atmesti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
|
|
@ -216,111 +155,109 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP nukreipimas"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Galiojimo datos pabaiga"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Sužinoti daugiau"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prisijungti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Atšaukti visus"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Apimtis"
|
||||
msgstr "Aprėptis"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Siųsti el. laišką"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -328,15 +265,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Dviejų Žingsnių Autentifikacijos Aktyvacija"
|
||||
|
||||
|
|
@ -347,25 +281,6 @@ msgstr "Dviejų Žingsnių Autentifikacijos Aktyvacija"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Dviejų Žingsnių Autentifikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dviejų žingsnių autentifikavimas - tai dvigubo patvirtinimo sistema.\n"
|
||||
" Pirmasis patvirtinimas atliekamas naudojant slaptažodį, o antrasis - kodą, kurį gaunate iš specialios mobiliosios programėlės. \n"
|
||||
" Populiariausios programėlės yra \"Authy\", \"Google Authenticator\" arba \"Microsoft Authenticator\"."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -384,21 +299,18 @@ msgstr "Dviejų Žingsnių Autentifikacija Įjungta"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Dviejų Žingsnių Autentifikacija Jau Įjungta"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Jūs galite įjungti Dviejų Žingsnių Autentifikaciją tiktai sau"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Dviejų Žingsnių Autentifikacija išjungta šiems vartotojams: %s"
|
||||
|
||||
|
|
@ -410,26 +322,56 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,32 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Latvian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/lv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= "
|
||||
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,132 +35,75 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentācija\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lasīt vairāk"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentācija\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lasīt vairāk"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Vai instalējiet autentifikācijas aplikāciju</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instalējiet autentifikācijas aplikāciju Jūsu mobilajā iekārtā</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Konta drošība"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivēt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Pievienots"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Autentifikācijas kods"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentifikācijas ierīce"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Autentifikācijas lietotnes uzstādīšana"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Nevarat to noskenēt?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Piemiedziet uz šo saiti, lai atvērt Jūsu autentifikācijas lietotni"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
|
@ -181,145 +121,142 @@ msgstr "Apraksts"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Ierīce"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Atspējot 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Atspējot"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Atspējot divfaktoru autentifikāciju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Atmest"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Neprasīt atkārtoti šajā ierīcē"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Iespējot 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Ievadiet Jūsu sešu ciparu kodu zemāk"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP maršrutēšana"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Nederīgs autentifikācijas koda formāts."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Uzzināt vairāk"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Ienākt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Pakalpojumā Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Pakalpojumā Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Atsaukt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Darbības joma"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Nosūtīt e-pastu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Verifikācijas kodam būtu jāsatur tikai skaitļi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Lai pierakstīties, ievadiet zemās sešu ciparu autentifikācijas kodu norādīto Jūsu autentifikācijas lietotnē.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
|
|
@ -328,15 +265,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Uzticamās ierīces"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -345,57 +279,38 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Divfaktoru autentifikācija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Divfaktoru autentifikācija"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Divfaktoru autentifikācija atspējota"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Divfaktoru autentifikācija iespējota"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Divfaktoru autentifikācija jau ir iespējota"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Tikai Jūs varat iespējot divfaktoru autentifikāciju"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -407,26 +322,56 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Verifikācijas kods"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verifikācija izgāzās, lūdzu, atkārtoti pārbaudiet 6 ciparu kodu"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "piem., 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,420 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "അക്കൗണ്ട് സെക്യൂരിറ്റി "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "റദ്ദാക്കുക"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "സൃഷ്ടിച്ച തീയതി"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "വിവരണം"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "ഉപകരണം"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "ആപ്പിൾ സ്റ്റോറിൽ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "ഗൂഗിൾ പ്ലേയിൽ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,32 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/mn/>\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,87 +33,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Нууцлалын тохиргоо"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Идэвхижүүлэх"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -131,14 +79,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Цуцлах"
|
||||
|
||||
|
|
@ -148,16 +90,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
|
@ -175,23 +119,24 @@ msgstr "Тайлбар"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Төхөөрөмж"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Идэвхигүй болгох"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Үл хэрэгсэх"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
|
|
@ -208,85 +153,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Хугацаа дуусах Огноо"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Нэвтрэх"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Хүчингүй болгох"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -299,20 +227,35 @@ msgstr "Хамрах хүрээ"
|
|||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Имэйл илгээх"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -320,15 +263,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -339,22 +279,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Хоёр-алхамт нэвтрэлт"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -373,21 +297,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -399,26 +320,56 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,424 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Ketahui Lebih Lanjut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Ketahui Lebih Lanjut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktifkan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Tarikh Penciptaan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Penerangan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Peranti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,23 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:22+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/my/>\n"
|
||||
"Language: my\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -27,88 +32,42 @@ msgid "2-Factor Setup Wizard"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -121,16 +80,10 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "မလုပ်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -138,52 +91,55 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "ဖန်တီးသူ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "တည်ဆောက်သည့်အချိန်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
msgstr "ဖန်တီးသောရက်စွဲ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "ဖော်ပြချက်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "မလုပ်နိုင်ပါ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "မလုပ်တော့"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -198,47 +154,53 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "သက်တမ်းကုန်ရက်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "နံပါတ်"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်သူ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်ချိန်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "ထပ်မံ လေ့လာရန်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -246,36 +208,14 @@ msgstr ""
|
|||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -289,18 +229,34 @@ msgid "Secret"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "အီးမေးလ် ပို့"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -308,14 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -326,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -358,50 +296,81 @@ msgid "Two-factor authentication Enabled"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
msgstr "ယူအာအယ်"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "အသုံးပြုသူ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,34 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Thor Arne Hvidsten <thor.arne.hvidsten@gmail.com>, 2022
|
||||
# Fredrik Ahlsen <fredrik@gdx.no>, 2023
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,87 +34,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Konto Sikkerhet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiver"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Lagt til"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -133,16 +80,10 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -150,19 +91,21 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -177,23 +120,24 @@ msgstr "Beskrivelse"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Enhet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Slå av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
|
|
@ -210,85 +154,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-ruting"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Utløpsdato"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Logg inn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "I Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Trekk tilbake"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -301,20 +228,35 @@ msgstr ""
|
|||
msgid "Secret"
|
||||
msgstr "Hemmelighet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Send e-post"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -322,15 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -341,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "To-faktor Autentisering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -375,21 +298,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -401,26 +321,68 @@ msgstr "URL"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Lagt til"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Enhet"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "I Apple Store"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Trekk tilbake"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Gunther Clauwaert <gclauwae@hotmail.com>, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@odoo.com>, 2025, 2026.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-13 15:36+0000\n"
|
||||
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s op %(platform)s"
|
||||
|
||||
|
|
@ -37,106 +35,52 @@ msgstr "2-Factor installatiewizard"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-Factor authenticatie is nu ingeschakeld."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentatie\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Meer weten"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentatie\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Meer weten"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Ingeschakeld\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Je account is beveiligd!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Je account is beveiligd!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">of installeer een authenticator-app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Installeer een authenticator-app op je mobiele apparaat</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Scan op verzoek de onderstaande barcode</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kopieer de onderstaande sleutel wanneer je hierom wordt gevraagd:</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Populair zijn Authy, Google Authenticator of de "
|
||||
"Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Accountveiligheid"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activeer"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Uitgeschakeld\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Toegevoegd op"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Aanbevolen voor extra veiligheid.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Weet je het zeker? De gebruiker kan worden gevraagd om opnieuw twee-factor "
|
||||
"codes in te voeren op deze apparaten."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Weet je het zeker? Je kan worden gevraagd om opnieuw twee-factor codes in te"
|
||||
" voeren op deze apparaten."
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Voeg deze sleutel toe aan je Authenticator-app"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -148,14 +92,8 @@ msgstr "Authenticatiecode"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Verificatieapparaat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Authenticator-app instellen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
|
|
@ -165,19 +103,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Kun je het niet scannen?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klik op deze link om je authenticator-app te openen"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Code controleren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -192,25 +132,26 @@ msgstr "Omschrijving"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Apparaat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Schakel 2FA uit"
|
||||
msgid "Disable"
|
||||
msgstr "Uitschakelen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Tweestapsverificatie uitschakelen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Negeren"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -225,86 +166,69 @@ msgstr "2FA inschakelen"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Vul hieronder je zescijferige code in"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Tweestapsverificatie inschakelen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Vervaldatum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Ongeldig formaat verificatiecode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst geupdate op"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Leer meer"
|
||||
msgstr "Meer informatie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Limiettype"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Login"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Zoek naar een knop \"Een account toevoegen\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Op Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Op Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR-code"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Intrekken"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Alles intrekken"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Scan deze barcode in je Authenticator-app"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -316,22 +240,38 @@ msgstr "Bereik"
|
|||
msgid "Secret"
|
||||
msgstr "Geheim"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Verzend e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP-limietlogboeken"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "De verificatie code mag enkel cijfers bevatten"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Om in te loggen, voer je hieronder de zescijferige authenticatiecode in die je van je Authenticator-app hebt gekregen.\n"
|
||||
"Om in te loggen, voer je hieronder de zescijferige authenticatiecode in die "
|
||||
"je van je Authenticator-app hebt gekregen.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totp laatste teller"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -339,15 +279,12 @@ msgstr "Totp geheim"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Vertrouwd apparaten"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activering van tweestapsverificatie"
|
||||
|
||||
|
|
@ -358,28 +295,6 @@ msgstr "Activering van tweestapsverificatie"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Tweestapsverificatie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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 zijn Authy, Google Authenticator of de Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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 keuzes zijn Authy, Google Authenticator of de Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -398,21 +313,18 @@ msgstr "Tweestapsverificatie ingeschakeld"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Tweestapsverificatie reeds ingeschakeld"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Tweestapsverificatie kan enkel voor jezelf ingeschakeld worden"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Tweestapsverificatie uitgeschakeld voor de volgende gebruiker(s): %s"
|
||||
|
||||
|
|
@ -424,26 +336,164 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Verificatiecode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Verificatiecode"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verificatie mislukt. Controleer de 6-cijferige code nogmaals."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Verificatie mislukt, gebruik de nieuwste 6-cijferige code"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Geef de code in die door je app wordt gegeven"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Het maximale aantal verificatiemails voor je account is bereikt. Probeer het "
|
||||
"later opnieuw."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Het maximale aantal codeverificaties voor je account is bereikt. Probeer het "
|
||||
"later opnieuw."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "bijv. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">of installeer een authenticator-app</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Installeer een authenticator-app op je mobiele apparaat</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Scan op verzoek de onderstaande "
|
||||
#~ "barcode</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Kopieer de onderstaande sleutel wanneer je hierom wordt gevraagd:</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Populair zijn Authy, Google Authenticator of "
|
||||
#~ "de Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Dit account is "
|
||||
#~ "beveiligd!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Je account is "
|
||||
#~ "beveiligd!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Toegevoegd op"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Weet je het zeker? De gebruiker kan worden gevraagd om opnieuw twee-"
|
||||
#~ "factor codes in te voeren op deze apparaten."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Weet je het zeker? Je kunt worden gevraagd om opnieuw twee-factor codes "
|
||||
#~ "in te voeren op deze apparaten."
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Authenticator-app instellen"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Klik op deze link om je authenticator-app te openen"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Apparaat"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Schakel 2FA uit"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Vul hieronder je zescijferige code in"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Zoek naar een knop \"Een account toevoegen\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Op Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Op Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Intrekken"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Alles intrekken"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "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 keuzes zijn Authy, Google Authenticator "
|
||||
#~ "of de Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,420 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Lars Aam <lars.aam@vikenfiber.no>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lars Aam <lars.aam@vikenfiber.no>, 2023\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,170 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Grażyna Grzelak <grazyna.grzelak@openglobe.pl>, 2022
|
||||
# Zdzisław Krajewski <zdzichucb@gmail.com>, 2022
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Piotr Strebski <strebski@gmail.com>, 2022
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Łukasz Grzenkowicz <lukasz.grzenkowicz@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-28 08:54+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"pl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s na %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Kreator ustawień uwierzytelniena 2FA"
|
||||
msgstr "Kreator ustawień uwierzytelniana 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Uwierzytelnianie dwuetapowe jest teraz włączone."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
"Dowiedz się więcej"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
"Dowiedz się więcej"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Aktywowano\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">To konto jest chronione!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Twoje konto jest chronione!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">lub zainstaluj aplikację autoryzującą</span>\n"
|
||||
"<span class=\"d-none d-md-block\">Zainstaluj aplikację autoryzującą na swoim urządzeniu mobilnym</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Gdy zostaniesz o to poproszony, zeskanuj poniższy kod</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Gdy zostaniesz o to poproszony, skopiuj poniższy kod</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Popularne aplikacje: Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Bezpieczeństwo konta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktywuj"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Dezaktywowano\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Dodano"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Zalecane w celu zwiększenia bezpieczeństwa.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Czy jesteś pewien? Użytkownik może zostać poproszony o ponowne wprowadzenie "
|
||||
"kodów dwuskładnikowych na tych urządzeniach"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Czy jesteś pewien? Możesz zostać poproszony o ponowne wprowadzenie kodów "
|
||||
"dwuskładnikowych na tych urządzeniach"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Dodaj ten klucz w swojej aplikacji do uwierzytelniania"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kod weryfikacyjny"
|
||||
msgstr "Kod uwierzytelniający"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Urządzenie uwierzytelniające"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Konfiguracja aplikacji Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
|
|
@ -174,16 +103,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Nie możesz tego zeskanować?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kliknij ten link, aby otworzyć aplikację uwierzytelniającą"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Sprawdzanie kodu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
|
@ -201,23 +132,24 @@ msgstr "Opis"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Urządzenie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Wyłącz Uwierzytelnianie dwuetapowe"
|
||||
msgid "Disable"
|
||||
msgstr "Dezaktywuj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Wyłącz Uwierzytelnianie dwuetapowe"
|
||||
msgstr "Wyłącz uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Odrzuć"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
|
|
@ -234,86 +166,69 @@ msgstr "Włącz 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Wpisz swój 6-cyfrowy kod poniżej"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Włącz uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Wytyczanie HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data ważności"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Nieprawidłowy format kodu uwierzytelniającego."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Dowiedz się więcej"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Typ limitu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Zaloguj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Poszukaj przycisku „Dodaj konto”."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "W Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "W Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Kod QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Unieważnij"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Odwołaj wszystko"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Zeskanuj ten kod kreskowy w swojej aplikacji uwierzytelniającej"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -323,40 +238,53 @@ msgstr "Zakres"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Sekret"
|
||||
msgstr "Hasło"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Wyślij e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Dzienniki limitów szybkości TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Kod weryfikacyjny powinien zawierać tylko cyfry"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Aby się zalogować, wprowadź poniżej 6-cyfrowy kod uwierzytelniający dostarczony przez aplikację Authenticator.\n"
|
||||
"Aby się zalogować, wprowadź poniżej 6-cyfrowy kod uwierzytelniający "
|
||||
"dostarczony przez aplikację Uwierzytelniającą.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Ostatni licznik Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Sekret Totp"
|
||||
msgstr "Hasło Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Zaufane urządzenia"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Aktywacja uwierzytelniania dwuskładnikowego"
|
||||
|
||||
|
|
@ -367,28 +295,6 @@ msgstr "Aktywacja uwierzytelniania dwuskładnikowego"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Weryfikacja dwuetapowa (\"2FA\") jest systemem umożliwjającym weryfikację czy to Ty logujesz się do swojego konta.\n"
|
||||
"Pierwszym etapem jest Twoje hasło, a drugim jest kod z dedykowanej aplikacji z urządzenia mobilnego.\n"
|
||||
"Popularnymi aplikacjami są Authy, Google Authenticator oraz Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Uwierzytelnienie dwuskładnikowe (\"2FA\") to system podwójnego uwierzytelniania.\n"
|
||||
"Pierwszy z nich odbywa się za pomocą hasła, a drugi za pomocą kodu, który otrzymujesz z dedykowanej aplikacji mobilnej.\n"
|
||||
"Do popularnych należą Authy, Google Authenticator czy Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,34 +303,31 @@ msgstr "Uwierzytelnianie dwuskładnikowe"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe wyłączone"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe zezaktywowane"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe włączone"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe aktywowane"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe już włączone"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe jest już aktywowane"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe można włączyć tylko dla siebie"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe można aktywować tylko dla siebie"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Uwierzytelnianie dwuskładnikowe zostało wyłączone dla następujących "
|
||||
"Uwierzytelnianie dwuskładnikowe zostało dezaktywowane dla następujących "
|
||||
"użytkownika(ów): %s"
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -435,26 +338,164 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Kod weryfikacyjny"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Kod weryfikacyjny"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Weryfikacja nie powiodła się, sprawdź ponownie 6-cyfrowy kod"
|
||||
msgstr "Weryfikacja nie powiodła się. Sprawdź ponownie 6-cyfrowy kod."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Weryfikacja się nie powiodła, użyj ostatniego 6-cyfrowego kodu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Wpisz kod wygenerowany w Twojej aplikacji"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Osiągnąłeś limit uwierzytelniających wiadomości email wysłanych dla Twojego "
|
||||
"konta. Spróbuj ponownie później."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Osiągnąłeś limit weryfikacji kodu dla Twojego konta. Spróbuj ponownie "
|
||||
"później."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "np. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">lub zainstaluj aplikację autoryzującą</"
|
||||
#~ "span>\n"
|
||||
#~ "<span class=\"d-none d-md-block\">Zainstaluj aplikację autoryzującą na "
|
||||
#~ "swoim urządzeniu mobilnym</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Gdy zostaniesz o to poproszony, "
|
||||
#~ "zeskanuj poniższy kod</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Gdy "
|
||||
#~ "zostaniesz o to poproszony, skopiuj poniższy kod</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Popularne aplikacje: Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">To konto jest "
|
||||
#~ "chronione!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Twoje konto "
|
||||
#~ "jest chronione!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Dodano"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Czy jesteś pewien? Użytkownik może zostać poproszony o ponowne "
|
||||
#~ "wprowadzenie kodów dwuskładnikowych na tych urządzeniach"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Czy jesteś pewien? Możesz zostać poproszony o ponowne wprowadzenie kodów "
|
||||
#~ "dwuskładnikowych na tych urządzeniach"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Konfiguracja aplikacji Authenticator"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Kliknij ten link, aby otworzyć aplikację uwierzytelniającą"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Urządzenie"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Wyłącz 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Wpisz swój 6-cyfrowy kod poniżej"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Poszukaj przycisku „Dodaj konto”."
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "W Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "W Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Unieważnij"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Odwołaj wszystko"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Uwierzytelnienie dwuskładnikowe (\"2FA\") to system podwójnego "
|
||||
#~ "uwierzytelniania.\n"
|
||||
#~ "Pierwszy z nich odbywa się za pomocą hasła, a drugi za pomocą kodu, który "
|
||||
#~ "otrzymujesz z dedykowanej aplikacji mobilnej.\n"
|
||||
#~ "Do popularnych należą Authy, Google Authenticator czy Microsoft "
|
||||
#~ "Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,166 +1,108 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# cafonso <cafonso62@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
||||
# NumerSpiral HBG, 2024
|
||||
# Rita Bastos, 2024
|
||||
# Daniel Reis, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Daniel Reis, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/pt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
msgstr "%(browser)s em %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
msgstr "Assistente de autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Segurança da Conta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Ativar"
|
||||
msgstr "A autenticação de dois fatores agora está habilitada."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Adicionado Em"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
msgstr "Código de autenticação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
msgstr "Dispositivo de autenticação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
msgstr "Não consegue escanear?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Verificação de código"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
|
@ -168,7 +110,7 @@ msgstr "Criado em"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data de Criação"
|
||||
msgstr "Data de criação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
|
|
@ -178,102 +120,93 @@ msgstr "Descrição"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Desabilitar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
msgstr "Desabilitar a autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
msgstr "Não perguntar novamente neste dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
msgstr "Habilitar 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Ativar a autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rotas HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data de expiração"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
msgstr "Formato de código de autenticação inválido."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saiba mais"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipo de limite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "iniciar sessão"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
msgstr "Entrar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
|
|
@ -281,59 +214,67 @@ msgid "Qrcode"
|
|||
msgstr "QR Code"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revogar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Âmbito"
|
||||
msgstr "Escopo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Segredo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Enviar e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Registros de limite de taxa TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
msgstr "O código de verificação deve conter apenas números"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Para fazer login, insira abaixo o código de autenticação fornecido pelo app "
|
||||
"de autenticação.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Último contador do Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
msgstr "Segredo do Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
msgstr "Dispositivos confiáveis"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
msgstr "Ativação da autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -342,57 +283,40 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
msgstr "Autenticação de dois fatores desabilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
msgstr "Autenticação de dois fatores habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
msgstr "A autenticação de dois fatores já está habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
msgstr "A autenticação de dois fatores só pode ser habilitada por você mesmo"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Autenticação de dois fatores desabilitada para o(s) seguinte(s) usuário(s): "
|
||||
"%s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
|
|
@ -402,26 +326,165 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Código de verificação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "A verificação falhou, confira o código de 6 dígitos"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "A verificação falhou, use o código de 6 dígitos mais recente"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Você atingiu o limite de e-mails de autenticação enviados para sua conta, "
|
||||
"tente novamente mais tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Você atingiu o limite de verificações de código para sua conta, tente "
|
||||
"novamente mais tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "ex: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Ou instale um aplicativo de "
|
||||
#~ "autenticação</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instale um aplicativo de autenticação no seu dispositivo móvel</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Se solicitado, leia o código de barras "
|
||||
#~ "abaixo</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Se "
|
||||
#~ "solicitado, copie a chave abaixo</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Algumas opções populares são o Authy, o Google "
|
||||
#~ "Authenticator e o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">A conta está "
|
||||
#~ "protegida!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Sua conta está "
|
||||
#~ "protegida!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Adicionado em"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Tem certeza? O usuário pode precisar inserir códigos de dois fatores "
|
||||
#~ "novamente nesses dispositivos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Tem certeza? Você pode precisar inserir códigos de dois fatores novamente "
|
||||
#~ "nesses dispositivos"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Instalação do app de autenticação"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Clique neste link para abrir seu aplicativo de autenticação"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositivo"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Desabilitar 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Insira seu código de seis dígitos abaixo"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Procure por um botão \"Adicionar conta\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Na Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "No Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revogar"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Revogar tudo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Autenticação de dois fatores (\"2FA\") é um sistema de autenticação "
|
||||
#~ "dupla.\n"
|
||||
#~ " A primeira é realizada com a senha e a segunda, "
|
||||
#~ "com um código obtido de um aplicativo móvel dedicado.\n"
|
||||
#~ " Os mais populares incluem Authy, Google "
|
||||
#~ "Authenticator ou Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,143 +1,85 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Éder Brito <britoederr@gmail.com>, 2022
|
||||
# Adriano Prado <adrianojprado@gmail.com>, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Maitê Dietze (madi)" <madi@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-03 17:14+0000\n"
|
||||
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_totp/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s em %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Assistente de configuração dois fatores"
|
||||
msgstr "Assistente de autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "A autenticação dois fatores agora está habilitada."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saiba mais"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saiba mais"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">A conta está protegida!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Sua conta está protegida!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Ou instale um aplicativo de autenticação</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instale um aplicativo de autenticação no seu dispositivo móvel</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Se solicitado, leia o código de barras abaixo</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Se solicitado, copie a chave abaixo</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Algumas opções populares são o Authy, oGoogle "
|
||||
"Authenticator e o Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Segurança da Conta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Ativar"
|
||||
msgstr "A autenticação de dois fatores agora está habilitada."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Adicionado em"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Ativado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Tem certeza? O usuário pode precisar inserir códigos de dois fator novamente"
|
||||
" nesses dispositivos"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Desabilitado\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Tem certeza? Você pode precisar inserir códigos de dois fatores novamente "
|
||||
"nesses dispositivos"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recomendado para segurança extra.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Adicione esta chave no seu aplicativo Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -149,14 +91,8 @@ msgstr "Código de autenticação"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Dispositivo de autenticação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Instalação do app de autenticação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
|
|
@ -166,16 +102,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Não consegue escanear?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Clique neste link para abrir seu aplicativo de autenticação"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Verificação de código"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
|
@ -183,7 +121,7 @@ msgstr "Criado em"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data de Criação"
|
||||
msgstr "Data de criação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
|
|
@ -193,23 +131,24 @@ msgstr "Descrição"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispositivo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Desabilitar 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Desativar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Desabitlitar a autenticação de dois fatores"
|
||||
msgstr "Desabilitar a autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
|
|
@ -226,69 +165,59 @@ msgstr "Habilitar 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Insira seu código de seis dígitos abaixo"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Ativar a autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Roteamento HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data de expiração"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Formato de código de autenticação inválido."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saiba Mais"
|
||||
msgstr "Saiba mais"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tipo de limite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Acessar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Procure um botão \"Adicionar conta\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Na Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "No Google Play"
|
||||
msgstr "Entrar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
|
|
@ -296,16 +225,9 @@ msgid "Qrcode"
|
|||
msgstr "QR Code"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revogar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Revogar tudo"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Digitalize este código de barras em seu aplicativo Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,40 +237,53 @@ msgstr "Escopo"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
msgstr "Segredo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Enviar e-mail"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Registros de limite de taxa TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "O código de verificação deve conter apenas números"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Para fazer login, insira abaixo o código de autenticação fornecido pelo app de autenticação.\n"
|
||||
"Para fazer login, insira abaixo o código de autenticação fornecido pelo app "
|
||||
"de autenticação.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Último contador do Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp Secret"
|
||||
msgstr "Segredo do Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispositivos confiáveis"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Ativação da autenticação de dois fatores"
|
||||
|
||||
|
|
@ -357,63 +292,38 @@ msgstr "Ativação da autenticação de dois fatores"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Autenticação Dois Fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autenticação de dois fatores (\"2FA\") é um sistema de autenticação dupla.\n"
|
||||
"O primeiro é feito com sua senha e o segundo com um código que você obtém de um aplicativo móvel dedicado.\n"
|
||||
"Os mais populares incluem Authy, Google Authenticator ou Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autenticação de dois fatores (\"2FA\") é um sistema de autenticação dupla.\n"
|
||||
" A primeira é realizada com a senha e a segunda, com um código obtido de um aplicativo móvel dedicado.\n"
|
||||
" Os mais populares incluem Authy, Google Authenticator ou Microsoft Authenticator."
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Autenticação dois fatores"
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autenticação de dois fatores Desabilitada"
|
||||
msgstr "Autenticação de dois fatores desabilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Autenticação de dois fatores Habilitada"
|
||||
msgstr "Autenticação de dois fatores habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Autenticação dois fatores já habilitada"
|
||||
msgstr "A autenticação de dois fatores já está habilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "A autenticação dois fatores só pode ser habilitada por você mesmo"
|
||||
msgstr "A autenticação de dois fatores só pode ser habilitada por você mesmo"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Autenticação de dois fatores desabilitada para o(s) seguinte(s) usuário(s): "
|
||||
|
|
@ -427,26 +337,165 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Código de Verificação"
|
||||
msgstr "Código de verificação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Código de verificação"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "A verificação falhou, verifique novamente o código de 6 dígitos"
|
||||
msgstr "A verificação falhou, confira o código de 6 dígitos"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "A verificação falhou, use o código de 6 dígitos mais recente"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Escreva o código fornecido pelo seu aplicativo"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Você atingiu o limite de e-mails de autenticação enviados para sua conta, "
|
||||
"tente novamente mais tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Você atingiu o limite de verificações de código para sua conta, tente "
|
||||
"novamente mais tarde."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "ex: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Ou instale um aplicativo de "
|
||||
#~ "autenticação</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Instale um aplicativo de autenticação no seu dispositivo móvel</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Se solicitado, leia o código de barras "
|
||||
#~ "abaixo</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Se "
|
||||
#~ "solicitado, copie a chave abaixo</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Algumas opções populares são o Authy, o Google "
|
||||
#~ "Authenticator e o Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">A conta está "
|
||||
#~ "protegida!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Sua conta está "
|
||||
#~ "protegida!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Adicionado em"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Tem certeza? O usuário pode precisar inserir códigos de dois fatores "
|
||||
#~ "novamente nesses dispositivos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Tem certeza? Você pode precisar inserir códigos de dois fatores novamente "
|
||||
#~ "nesses dispositivos"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Instalação do app de autenticação"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Clique neste link para abrir seu aplicativo de autenticação"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Dispositivo"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Desabilitar 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Insira seu código de seis dígitos abaixo"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Procure por um botão \"Adicionar conta\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Na Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "No Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Revogar"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Revogar tudo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Autenticação de dois fatores (\"2FA\") é um sistema de autenticação "
|
||||
#~ "dupla.\n"
|
||||
#~ " A primeira é realizada com a senha e a segunda, "
|
||||
#~ "com um código obtido de um aplicativo móvel dedicado.\n"
|
||||
#~ " Os mais populares incluem Authy, Google "
|
||||
#~ "Authenticator ou Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,144 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# sharkutz <sharkutz4life@yahoo.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Claudia Baisan, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Claudia Baisan, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-25 02:34+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s pe %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Asistent de configurare a autentificării cu doi factori"
|
||||
msgstr "Asistent Configurare 2 Factori"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-Factor authentication is now enabled."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Aflați mai multe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Aflați mai multe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Acest cont este protejat!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Contul dvs. este protejat!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Sau instalați o aplicație de autentificare</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Instalați o aplicație de autentificare pe dispozitivul mobil</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Când vă este solicitat, scanati codul de bare de mai jos</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Când vă este solicitat, copiați cheia de mai jos</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Cele mai populare includ Authy, Google "
|
||||
"Authenticator sau Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Securitatea contului"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Activează"
|
||||
msgstr "Autentificarea cu 2 factori este acum activată."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Adăugat la"
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"Sigur? Utilizatorului i se poate cere să introducă din nou coduri cu doi "
|
||||
"factori pe aceste dispozitive"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Sigur? Vi se poate cere să introduceți coduri cu doi factori din nou pe "
|
||||
"aceste dispozitive"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -148,16 +79,10 @@ msgstr "Cod de autentificare"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Dispozitiv de autentificare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Configurarea aplicației de autentificare"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
|
|
@ -167,20 +92,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Nu-l puteți scana?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
"Faceți clic pe acest link pentru a deschide aplicația de autentificare"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Verificare cod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -195,23 +121,24 @@ msgstr "Descriere"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Dispozitiv"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Dezactivați 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Dezactivat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Dezactivați autentificarea cu doi factori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Renunță"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
|
|
@ -228,113 +155,112 @@ msgstr "Activați 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Introduceți codul de șase cifre de mai jos"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rutare HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Data expirării"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Format de cod de autentificare nevalid."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
msgstr "Ultima actualizare de"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Aflați mai multe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Tip limită"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Autentificare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Căutați un buton \"Adăugați un cont\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "În Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "În Google Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Cod QR"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Revocare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Revocați tot"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Scope"
|
||||
msgstr "Domeniul Aplicabil"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Trimite email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Jurnale de limitare a ratei TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Codul de verificare ar trebui să conțină doar numere"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Pentru a vă autentifica, introduceți mai jos codul de autentificare de șase cifre furnizat de aplicația Authenticator.\n"
|
||||
"Pentru a vă autentifica, introduceți mai jos codul de autentificare de șase "
|
||||
"cifre furnizat de aplicația Authenticator.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -342,15 +268,12 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Dispozitive de încredere"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Activarea autentificării cu doi factori"
|
||||
|
||||
|
|
@ -361,28 +284,6 @@ msgstr "Activarea autentificării cu doi factori"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Autentificare cu doi factori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autentificarea cu doi factori (\"2FA\") este un sistem de autentificare dublă.\n"
|
||||
" Primul este realizat cu parola dvs. și al doilea cu un cod pe care îl obțineți dintr-o aplicație mobilă dedicată.\n"
|
||||
" Cele mai populare includ Authy, Google Authenticator sau Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Autentificarea cu doi factori (\"2FA\") este un sistem de autentificare dublă.\n"
|
||||
" Primul este realizat cu parola dvs. și al doilea cu un cod pe care îl obțineți dintr-o aplicație mobilă dedicată.\n"
|
||||
" Cele mai populare includ Authy, Google Authenticator sau Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -401,21 +302,18 @@ msgstr "Autentificarea cu doi factori activată"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Autentificarea cu doi factori este deja activată"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Autentificarea cu doi factori poate fi activată doar pentru dvs."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Autentificarea cu doi factori a fost dezactivată pentru următorii "
|
||||
|
|
@ -429,26 +327,56 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
msgstr "Utilizator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Cod de verificare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verificarea a eșuat, vă rugăm să verificați codul de 6 cifre"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "de ex. 123456"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-05 18:08+0000\n"
|
||||
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/ru/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s на %(platform)s"
|
||||
|
||||
|
|
@ -40,102 +38,52 @@ msgstr "мастер двухфакторной настройки"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "двухфакторная аутентификация теперь включена."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Узнать больше"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Узнать больше"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Включено\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Или установите приложение-аутентификатор</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Установите приложение аутентификатора на свое мобильное устройство</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">По запросу отсканируйте штрих-код, приведенный ниже</span>\n"
|
||||
" <span class=\"d-block d-md-none\">По запросу скопируйте приведенный ниже ключ</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Среди популярных - Authy, Google Authenticator "
|
||||
"или Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Параметры доступа"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Включить"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Выключено\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Добавлен"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Рекомендовано для дополнительной безопасности.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Вы уверены? Пользователю может быть предложено повторно ввести двухфакторные"
|
||||
" коды на этих устройствах"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Вы уверены? На этих устройствах вас могут попросить ввести двухфакторный код"
|
||||
" еще раз"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Добавьте этот ключ в ваше приложение-аутентификатор"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,16 +95,10 @@ msgstr "Код аутентификации"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Устройство аутентификации"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Настройка приложения Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -164,19 +106,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Не можете отсканировать его?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Нажмите на эту ссылку, чтобы открыть приложение аутентификатора"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Проверка кода"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
msgstr "Создано:"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
msgstr "Дата создания:"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -191,23 +135,24 @@ msgstr "Описание"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "устройство"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Отключить 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Отключить"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Отключите двухфакторную аутентификацию"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
|
|
@ -224,129 +169,125 @@ msgstr "Включить 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Введите шестизначный код ниже"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Включить двухфакторную аутентификацию"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизация HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Дата окончания"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Неправильный формат кода."
|
||||
msgstr "Неверный формат кода аутентификации."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP-адрес"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
msgstr "Последнее обновление:"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
msgstr "Дата последнего обновления:"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Подробнее"
|
||||
msgstr "Узнать больше"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Тип ограничения"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Войти"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Найдите кнопку \"Добавить учетную запись\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "В Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "В Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR-код"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Отменить все"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Отсканируйте этот штрихкод в вашем приложении-аутентификаторе"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Область доступа"
|
||||
msgstr "Сфера"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Секрет"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Отправить Email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Журналы ограничения скорости TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Проверочный код должен состоять только из цифр"
|
||||
msgstr "Код проверки должен содержать только цифры"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Чтобы войти в систему, введите шестизначный код аутентификации, предоставленный приложением Authenticator.\n"
|
||||
"Чтобы войти в систему, введите шестизначный код аутентификации, "
|
||||
"предоставленный приложением Authenticator.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Последний счетчик Totp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "TOTP секрет"
|
||||
msgstr "Секрет Тотп"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Доверенные устройства"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Активация двухфакторной аутентификации"
|
||||
|
||||
|
|
@ -357,28 +298,6 @@ msgstr "Активация двухфакторной аутентификаци
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Двухфакторная аутентификация"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двухфакторная аутентификация (\"2FA\") - это система двойной аутентификации.\n"
|
||||
" Первая осуществляется с помощью пароля, а вторая - с помощью кода, который вы получаете из специального мобильного приложения.\n"
|
||||
" Среди популярных - Authy, Google Authenticator или Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двухфакторная аутентификация (\"2FA\") - это система двойной аутентификации.\n"
|
||||
" Первая осуществляется с помощью пароля, а вторая - с помощью кода, который вы получаете из специального мобильного приложения.\n"
|
||||
" Среди популярных - Authy, Google Authenticator или Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,21 +316,18 @@ msgstr "Двухфакторная аутентификация Включено
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Двухфакторная аутентификация уже включена"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Двухфакторная аутентификация может быть включена только персонально"
|
||||
msgstr "Двухфакторную аутентификацию можно включить только для себя"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Двухфакторная аутентификация отключена для следующего пользователя "
|
||||
|
|
@ -425,26 +341,208 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Проверочный код"
|
||||
msgstr "Код подтверждения"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Код подтверждения"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Проверка не удалась, пожалуйста, проверьте еще раз ваш код из 6 цифр"
|
||||
msgstr "Верификация не прошла, пожалуйста, перепроверьте 6-значный код"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Проверка не удалась, пожалуйста, используйте последний 6-значный код"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Введите код, предоставленный вашим приложением"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Вы достигли лимита писем с кодом аутентификации, отправленных для вашей "
|
||||
"учетной записи, попробуйте позже."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Вы достигли лимита проверок кодов для вашей учетной записи, попробуйте позже."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "например, 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-"
|
||||
#~ "circle\"/>\n"
|
||||
#~ " Learn More"
|
||||
#~ msgstr ""
|
||||
#~ "<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-"
|
||||
#~ "circle\"/>\n"
|
||||
#~ " Узнать больше"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-"
|
||||
#~ "circle\"/>\n"
|
||||
#~ " Learn More"
|
||||
#~ msgstr ""
|
||||
#~ "<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-"
|
||||
#~ "circle\"/>\n"
|
||||
#~ " Узнать больше"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Или установите приложение-"
|
||||
#~ "аутентификатор</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Установите приложение аутентификатора на свое мобильное "
|
||||
#~ "устройство</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">По запросу отсканируйте штрих-код, "
|
||||
#~ "приведенный ниже</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">По "
|
||||
#~ "запросу скопируйте приведенный ниже ключ</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Среди популярных - Authy, Google Authenticator "
|
||||
#~ "или Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Этот счет "
|
||||
#~ "защищен!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Ваш счет "
|
||||
#~ "защищен!</span>"
|
||||
|
||||
#~ msgid "Account Security"
|
||||
#~ msgstr "Безопасность учетной записи"
|
||||
|
||||
#~ msgid "Activate"
|
||||
#~ msgstr "Активировать"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Добавлен"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Вы уверены? Пользователю может быть предложено повторно ввести "
|
||||
#~ "двухфакторные коды на этих устройствах"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Вы уверены? На этих устройствах вас могут попросить ввести двухфакторный "
|
||||
#~ "код еще раз"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Настройка приложения Authenticator"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Нажмите на эту ссылку, чтобы открыть приложение аутентификатора"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Устройство"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Отключить 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Введите шестизначный код ниже"
|
||||
|
||||
#~ msgid "HTTP Routing"
|
||||
#~ msgstr "Маршрутизация HTTP"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Найдите кнопку \"Добавить учетную запись\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "В Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "В Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Аннулировать"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Отменить все"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Двухфакторная аутентификация (\"2FA\") - это система двойной "
|
||||
#~ "аутентификации.\n"
|
||||
#~ " Первая осуществляется с помощью пароля, а "
|
||||
#~ "вторая - с помощью кода, который вы получаете из специального мобильного "
|
||||
#~ "приложения.\n"
|
||||
#~ " Среди популярных - Authy, Google "
|
||||
#~ "Authenticator или Microsoft Authenticator."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Двухфакторная аутентификация (\"2FA\") - это система двойной "
|
||||
#~ "аутентификации.\n"
|
||||
#~ " Первая осуществляется с помощью пароля, а вторая "
|
||||
#~ "- с помощью кода, который вы получаете из специального мобильного "
|
||||
#~ "приложения.\n"
|
||||
#~ " Среди популярных - Authy, Google Authenticator "
|
||||
#~ "или Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,32 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Jan Prokop, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Martin Datko <martin.datko@datko.eu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tomáš Píšek, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2025\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Slovak <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"sk/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,87 +34,40 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Zabezpečenie účtu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivovať"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -131,14 +80,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušené"
|
||||
|
||||
|
|
@ -148,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
|
@ -175,23 +120,24 @@ msgstr "Popis"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Zariadenie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Zakázať"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
|
|
@ -208,85 +154,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP smerovanie"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Zistiť viac"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prihlásenie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "V Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "V Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Odvolať"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -299,20 +228,35 @@ msgstr "Rozsah"
|
|||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Poslať email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -320,15 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -339,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvojfaktorová autentifikácia"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -373,21 +298,18 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -399,26 +321,56 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Vida Potočnik <vida.potocnik@mentis.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s na %(platform)s"
|
||||
|
||||
|
|
@ -42,100 +35,41 @@ msgstr "2-Factor Čarovnik za nastavitev"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-Factor overjanje je zdaj omogočeno."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Ali pa namestite aplikacijo za preverjanje pristnosti</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Namestite aplikacijo za preverjanje pristnosti na svojo mobilno napravo\n"
|
||||
"</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Ko se to od vas zahteva, skenirajte spodnjo črtno kodo</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Ko boste to zahtevali, kopirajte spodnji ključ\n"
|
||||
"</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Med priljubljenimi so Authy, Google Authenticator"
|
||||
" ali Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Varnost računa"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiviraj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Dodano"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Ste prepričani? Uporabnik bo morda moral na teh napravah ponovno vnesti "
|
||||
"dvofaktorske kode."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Ste prepričani? Morda boste morali na teh napravah ponovno vnesti "
|
||||
"dvofaktorske kode."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,14 +81,8 @@ msgstr "Koda za preverjanje pristnosti"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Naprava za preverjanje pristnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Nastavitev aplikacije za preverjanje pristnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Prekliči"
|
||||
|
||||
|
|
@ -164,16 +92,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Ne morete ga skenirati?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kliknite to povezavo, da odprete aplikacijo za preverjanje pristnosti"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Preverjanje kode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
|
@ -191,23 +121,24 @@ msgstr "Opis"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Naprava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Onemogoči 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Onemogoči"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Onemogoči two-factor preverjanje pristnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Opusti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
|
|
@ -224,86 +155,69 @@ msgstr "Omogoči 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Spodaj vnesite svojo šestmestno kodo"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Omogoči dvofaktorsko overjanje"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmerjanje"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Datum izteka"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Neveljavna oblika kode za preverjanje pristnosti."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Več o tem"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Vrsta omejitve"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prijava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Poiščite gumb »Dodaj račun«"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "V Apple Trgovini"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "V trgovini Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR koda"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Prekliči"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Prekliči vse"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -315,22 +229,38 @@ msgstr "Obseg"
|
|||
msgid "Secret"
|
||||
msgstr "Skrivnost"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Pošlji e-pošto"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP Dnevniki omejitev hitrosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Potrditvena koda naj vsebuje samo številke"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Za prijavo vnesite spodaj šestmestno kodo za preverjanje pristnosti, ki vam jo je posredovala aplikacija Authenticator.\n"
|
||||
"Za prijavo vnesite spodaj šestmestno kodo za preverjanje pristnosti, ki vam "
|
||||
"jo je posredovala aplikacija Authenticator.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -338,15 +268,12 @@ msgstr "Strogo zaupno"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Zaupanja vredne naprave"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Two-Factor Aktivacija overjanja"
|
||||
|
||||
|
|
@ -357,25 +284,6 @@ msgstr "Two-Factor Aktivacija overjanja"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvostopenjska avtentikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dvofaktorska avtentikacija (\"2FA\") je sistem dvojne avtentikacije.\n"
|
||||
" Prvega se lotite z geslom, drugega pa s kodo, ki jo dobite v namenski mobilni aplikaciji.\n"
|
||||
" Med priljubljenimi so Authy, Google Authenticator ali Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -394,21 +302,18 @@ msgstr "Two-factor Omogočeno preverjanje pristnosti"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Dvostopenjska avtentikacija je že omogočena"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Dvostopenjsko avtentikacijo lahko omogočite samo zase"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Dvofaktorska avtentikacija je onemogočena za naslednje uporabnike: %s"
|
||||
|
||||
|
|
@ -420,26 +325,163 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Potrditvena koda"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Preverjanje ni uspelo, prosimo, dvakrat preverite 6-mestno kodo."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "npr. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Ali pa namestite aplikacijo za "
|
||||
#~ "preverjanje pristnosti</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Namestite aplikacijo za preverjanje pristnosti na svojo mobilno "
|
||||
#~ "napravo\n"
|
||||
#~ "</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Ko se to od vas zahteva, skenirajte "
|
||||
#~ "spodnjo črtno kodo</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Ko "
|
||||
#~ "boste to zahtevali, kopirajte spodnji ključ\n"
|
||||
#~ "</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Med priljubljenimi so Authy, Google "
|
||||
#~ "Authenticator ali Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Ta račun je "
|
||||
#~ "zaščiten!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Vaš račun je "
|
||||
#~ "zaščiten!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Dodano"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Ste prepričani? Uporabnik bo morda moral na teh napravah ponovno vnesti "
|
||||
#~ "dvofaktorske kode."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Ste prepričani? Morda boste morali na teh napravah ponovno vnesti "
|
||||
#~ "dvofaktorske kode."
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Nastavitev aplikacije za preverjanje pristnosti"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr ""
|
||||
#~ "Kliknite to povezavo, da odprete aplikacijo za preverjanje pristnosti"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Naprava"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Onemogoči 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Spodaj vnesite svojo šestmestno kodo"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Poiščite gumb »Dodaj račun«"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "V Apple Trgovini"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "V trgovini Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Prekliči"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Prekliči vse"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Dvofaktorska avtentikacija (\"2FA\") je sistem dvojne avtentikacije.\n"
|
||||
#~ " Prvega se lotite z geslom, drugega pa s kodo, ki "
|
||||
#~ "jo dobite v namenski mobilni aplikaciji.\n"
|
||||
#~ " Med priljubljenimi so Authy, Google Authenticator "
|
||||
#~ "ali Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,23 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:22+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -27,88 +28,42 @@ msgid "2-Factor Setup Wizard"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -121,14 +76,8 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -138,16 +87,18 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
|
@ -165,13 +116,7 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -179,9 +124,16 @@ msgstr ""
|
|||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -198,84 +150,68 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -289,18 +225,34 @@ msgid "Secret"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -308,14 +260,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -326,22 +276,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -358,20 +292,20 @@ msgid "Two-factor authentication Enabled"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -383,25 +317,56 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,447 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+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
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s na %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "2-Faktor Postavljanje čarobnjaka"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-Faktorska autentifikacija je sada omogućena."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Instalirajte aplikaciju</span>\n"
|
||||
" <span class=\"d-none d-md-block\"> za autentifikaciju na vašem mobilnom uređaju.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Kada se zatraži, skenirajte bar kod ispod</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kada se zatraži,kopirajte ključ ispod</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Popularni su Authy, Google Authenticator ili "
|
||||
"Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Bezbednost naloga"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktiviraj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Dodato dana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Da li ste sigurni? Korisnik može biti zamoljen da ponovo unese dvofaktorni "
|
||||
"kod na tim uređajima."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Da li ste sigurni? Može vam biti zatraženo da ponovo unesete dvofaktorske "
|
||||
"kodove na tim uređajima."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kod autentikacije"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Autentifikacioni uređaj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Authenticator aplikacija podešavanje"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Ne možete ga skenirati?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
"Kliknite na ovaj link da otvorite svoju aplikaciju za autentifikaciju."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Datum Kreiranja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Uređaj"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Onemogući 2FA."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Onemogućite dvofaktornu autentifikaciju."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Ne pitaj me više na ovom uređaju"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Omogući 2FA"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Unesite svoj šestocifreni kod ispod."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP rutiranje"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Neispravan format koda za autentikaciju."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Prijava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Pronađite dugme \"Dodaj nalog\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Na Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Na Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR kod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Opozovi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Opozovi sve"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Obim"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajna"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Verifikacioni kod treba da sadrži samo brojeve"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Da se prijavite, unesite ispod šestocifreni kod za autentikaciju koji vam je obezbedila vaša izabrana aplikacija za autentikaciju.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Pouzdani uređaji"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Dvofaktorska autentifikacija aktivacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "Dvofaktorska autentifikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dvofaktorska autentifikacija (\"2FA\") je sistem dvostruke autentifikacije.\n"
|
||||
" Prva se vrši sa vašom lozinkom, a druga sa kodom koji dobijate iz posebne mobilne aplikacije.\n"
|
||||
" Popularne aplikacije uključuju Authy, Google Authenticator ili Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Dvofaktorska autentifikacija (\"2FA\") je sistem dvostruke autentifikacije.\n"
|
||||
"Prva se vrši sa vašom lozinkom, a druga sa kodom koji dobijate iz posebne mobilne aplikacije.\n"
|
||||
"Popularne aplikacije uključuju Authy, Google Authenticator ili Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Dvofaktorska autentifikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Dvofaktorska autentifikacija onemogućena"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "Dvofaktorska autentifikacija omogućena"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Dvofaktorska autentifikacija već je omogućena"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Dvofaktorska autentifikacija može biti omogućena samo za sebe."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Two-factor authentication disabled for the following user(s): %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Verifikacioni kod"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Verifikacija nije uspela, molimo vas da proverite 6-cifreni kod."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "npr. 123456"
|
||||
|
|
@ -1,23 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-10 10:22+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_totp/sr_Latn/>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -27,88 +32,42 @@ msgid "2-Factor Setup Wizard"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -121,16 +80,10 @@ msgstr ""
|
|||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
|
|
@ -138,40 +91,36 @@ msgid "Cannot scan it?"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr ""
|
||||
msgstr "Datum Kreiranja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
|
|
@ -179,11 +128,18 @@ msgstr ""
|
|||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Poništi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -198,68 +154,59 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Datum isteka"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Saznaj više"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr ""
|
||||
msgstr "Prijava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
|
|
@ -267,40 +214,49 @@ msgid "Qrcode"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "Obim"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajni ključ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Pošalji Email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -308,14 +264,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -326,22 +280,6 @@ msgstr ""
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -358,50 +296,81 @@ msgid "Two-factor authentication Enabled"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr ""
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
|
|
@ -1,37 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Haojun Zou <apollo_zhj@msn.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Robin Calvin, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Simon S, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-03-06 17:50+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.16.1\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s på %(platform)s"
|
||||
|
||||
|
|
@ -43,106 +35,52 @@ msgstr "2-faktor installationsguide"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2-faktorautentisering är nu aktiverad."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lär dig mer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Dokumentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Lär dig mer"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Aktivera\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Detta kontot är skyddat!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ditt konto är skyddat!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Eller installera en autentiseringsapp</span>.\n"
|
||||
" <span class=\"d-none d-md-block\">Installera en autentiseringsapp på din mobila enhet</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Skanna streckkoden nedan när du blir ombedd att göra det</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Kopiera nyckeln nedan när du blir ombedd att göra det</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Populära sådana inkluderar Authy, Google "
|
||||
"Authenticator eller Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Kontosäkerhet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Aktivera"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Avaktivera\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Tillagt den"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Rekommenderad för extra säkerhet.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Är du säker på det? Användaren kan bli ombedd att ange tvåfaktorkoder igen "
|
||||
"på dessa enheter"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Är du säker på det? Du kan bli ombedd att ange tvåfaktorkoder igen på dessa "
|
||||
"enheter"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Lägg till den här nyckeln i din Authenticator-app"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -154,14 +92,8 @@ msgstr "Autentiseringskod"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Autentiseringsenhet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Inställning av autentiseringsapp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
|
|
@ -171,24 +103,26 @@ msgid "Cannot scan it?"
|
|||
msgstr "Går det inte att skanna den?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Klicka på den här länken för att öppna din autentiseringsapp"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Kontroll av kod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Skapad datum"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
|
|
@ -198,23 +132,24 @@ msgstr "Beskrivning"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Enhet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Avaktivera 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Dnaktivera"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Inaktivera tvåfaktorsautentisering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
|
|
@ -231,113 +166,112 @@ msgstr "Aktivera 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Ange din sexsiffriga kod nedan"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Aktivera tvåfaktorsautentisering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-rutt"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Utgångsdatum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Felaktigt autentiseringsformat på koden."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
msgstr "Senast uppdaterad den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Läs mer"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Typ av gräns"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Logga in"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Leta efter en \"Lägg till ett konto\"-knapp"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "I Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "I Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrkod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Återkalla"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Återkalla alla"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Skanna den här streckkoden i din Authenticator-app"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Omfattning"
|
||||
msgstr "Omfång"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Hemlighet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Skicka e-post"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Loggar för TOTP-gränsvärden"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Verifieringskoden bör endast innehålla siffror"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"För att logga in, ange nedan den sexsiffriga autentiseringskoden som tillhandahålls av din Authenticator-app.\n"
|
||||
"För att logga in, ange nedan den sexsiffriga autentiseringskoden som "
|
||||
"tillhandahålls av din Authenticator-app.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totalt sista räknare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -345,15 +279,12 @@ msgstr "Totp Hemlig"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Betrodda enheter"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Tvåfaktorsautentisering Aktivering"
|
||||
|
||||
|
|
@ -364,28 +295,6 @@ msgstr "Tvåfaktorsautentisering Aktivering"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Tvåfaktorsautentisering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Tvåfaktorsautentisering (\"2FA\") är ett system med dubbel autentisering.\n"
|
||||
" Den första görs med ditt lösenord och den andra med en kod som du får från en särskild mobilapp.\n"
|
||||
" Populära sådana är Authy, Google Authenticator eller Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Tvåfaktorsautentisering (\"2FA\") är ett system med dubbel autentisering.\n"
|
||||
" Den första görs med ditt lösenord och den andra med en kod som du får från en särskild mobilapp.\n"
|
||||
" Populära sådana är Authy, Google Authenticator eller Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -404,21 +313,18 @@ msgstr "Tvåfaktorsautentisering Aktiverad"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Tvåfaktorsautentisering redan aktiverad"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Tvåfaktorsautentisering kan endast aktiveras för dig själv"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Tvåfaktorsautentisering avaktiverad för följande användare: %s"
|
||||
|
||||
|
|
@ -430,27 +336,164 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Verifieringskod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Verifieringskod"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr ""
|
||||
"Verifieringen misslyckades, var vänlig dubbelkolla den 6-siffriga koden"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Verifieringen misslyckades, använd den senaste 6-siffriga koden"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Skriv koden som din app ger"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Du har nått gränsen för antalet autentiseringsmeddelanden som skickas för "
|
||||
"ditt konto. Försök igen senare."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Du har nått gränsen för kodverifieringar för ditt konto. Försök igen senare."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "t.ex. 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Eller installera en autentiseringsapp</"
|
||||
#~ "span>.\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Installera en autentiseringsapp på din mobila enhet</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Skanna streckkoden nedan när du blir "
|
||||
#~ "ombedd att göra det</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">Kopiera nyckeln nedan när du blir ombedd att göra det</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Populära sådana inkluderar Authy, Google "
|
||||
#~ "Authenticator eller Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Detta konto är "
|
||||
#~ "skyddat!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Ditt konto är "
|
||||
#~ "skyddat!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Tillagt den"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Är du säker på det? Användaren kan bli ombedd att ange tvåfaktorkoder "
|
||||
#~ "igen på dessa enheter"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Är du säker på det? Du kan bli ombedd att ange tvåfaktorkoder igen på "
|
||||
#~ "dessa enheter"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Inställning av autentiseringsapp"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Klicka på den här länken för att öppna din autentiseringsapp"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Enhet"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Avaktivera 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Ange din sexsiffriga kod nedan"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Leta efter en \"Lägg till ett konto\"-knapp"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "I Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "I Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Återkalla"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Återkalla alla"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "Tvåfaktorsautentisering (\"2FA\") är ett system med dubbel "
|
||||
#~ "autentisering.\n"
|
||||
#~ " Den första görs med ditt lösenord och den andra "
|
||||
#~ "med en kod som du får från en särskild mobilapp.\n"
|
||||
#~ " Populära sådana är Authy, Google Authenticator "
|
||||
#~ "eller Microsoft Authenticator."
|
||||
|
|
|
|||
|
|
@ -1,139 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/auth_totp/"
|
||||
"th/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s บน %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "วิซาร์ดการตั้งค่า 2-Factor"
|
||||
msgstr "โปรแกรมตั้งค่า 2-Factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "เปิดใช้งานการตรวจสอบสิทธิ์แบบ 2 ปัจจัยแล้ว"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" เรียนรู้เพิ่มเติม"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" เรียนรู้เพิ่มเติม"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">บัญชีนี้มีการป้องกัน!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">บัญชีของคุณได้รับการคุ้มครอง!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">หรือติดตั้งแอปรับรองความถูกต้อง</span>\n"
|
||||
" <span class=\"d-none d-md-block\">ติดตั้งแอปตรวจสอบความถูกต้องบนอุปกรณ์มือถือของคุณ</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">เมื่อได้รับการร้องขอให้สแกนบาร์โค้ดด้านล่าง</span>\n"
|
||||
" <span class=\"d-block d-md-none\">เมื่อได้รับการร้องขอให้คัดลอกคีย์ด้านล่าง</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">รายการยอดนิยม ได้แก่ Authy, Google Authenticator "
|
||||
"หรือ Microsoft Authenticator</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "ความปลอดภัยของบัญชี"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "เพิ่มลงบน"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"คุณแน่ใจไหม? ผู้ใช้อาจถูกขอให้ป้อนรหัส two-factor อีกครั้งบนอุปกรณ์เหล่านั้น"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"คุณแน่ใจไหม? คุณอาจถูกขอให้ป้อนรหัส two-factor อีกครั้งบนอุปกรณ์เหล่านั้น"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -145,14 +80,8 @@ msgstr "โค้ดรับรองความถูกต้อง"
|
|||
msgid "Authentication Device"
|
||||
msgstr "อุปกรณ์ตรวจสอบสิทธิ์"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "การตั้งค่าแอป Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
|
|
@ -162,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "ไม่สามารถสแกนได้?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "คลิกที่ลิงก์นี้เพื่อเปิดแอปรับรองความถูกต้องของคุณ"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "การตรวจสอบโค้ด"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
|
@ -189,23 +120,24 @@ msgstr "คำอธิบาย"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "อุปกรณ์"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "ปิดการใช้งาน 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "ปิดการใช้งาน"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "ปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัย"
|
||||
msgstr "ปิดใช้งานการรับรองความถูกต้องด้วย Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "ละทิ้ง"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
|
|
@ -222,86 +154,69 @@ msgstr "เปิดใช้งาน2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "ใส่รหัสหกหลักของคุณด้านล่าง"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "การกำหนด HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "วันหมดอายุ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "รูปแบบโค้ดรับรองสิทธิ์ไม่ถูกต้อง"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "เรียนรู้เพิ่มเติม"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "จำกัดประเภท"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "เข้าสู่ระบบ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "มองหาปุ่ม \"เพิ่มบัญชี\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "บน Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "บน Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
msgstr "Qr โค้ด"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "เพิกถอน"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "เพิกถอนทั้งหมด"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -313,22 +228,37 @@ msgstr "ขอบเขต"
|
|||
msgid "Secret"
|
||||
msgstr "ความลับ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "ส่งอีเมล"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "บันทึกการจำกัดอัตรา TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "รหัสยืนยันควรมีเฉพาะตัวเลข"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"ในการเข้าสู่ระบบ ให้ป้อนรหัสการตรวจสอบสิทธิ์หกหลักด้านล่างที่แอป Authenticator ให้มา\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -336,83 +266,54 @@ msgstr "Totp Secret"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "อุปกรณ์ที่เชื่อถือได้"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "การเปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัย"
|
||||
msgstr "การเปิดใช้งานการรับรองความถูกต้องด้วย Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr "การรับรองความถูกต้องแบบสองปัจจัย"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"การรับรองความถูกต้องแบบสองปัจจัย (\"2FA\") เป็นระบบการตรวจสอบสิทธิ์แบบคู่\n"
|
||||
" อันแรกใช้รหัสผ่านของคุณและอันที่สองใช้โค้ดที่คุณได้รับจากแอปมือถือเฉพาะ\n"
|
||||
" รายการยอดนิยม ได้แก่ Authy, Google Authenticator หรือ Microsoft Authenticator"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"การตรวจสอบสิทธิ์แบบ Two-factor (\"2FA\") คือระบบการตรวจสอบสิทธิ์แบบสองชั้น\n"
|
||||
" อันแรกใช้รหัสผ่านของคุณและอันที่สองใช้รหัสที่คุณได้รับจากแอปมือถือโดยเฉพาะ\n"
|
||||
" แอปยอดนิยม ได้แก่ Authy, Google Authenticator หรือ Microsoft Authenticator"
|
||||
msgstr "การรับรองความถูกต้องแบบ Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "การรับรองความถูกต้องแบบสองปัจจัย"
|
||||
msgstr "การรับรองความถูกต้องแบบ Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "ปิดใช้งานการรับรองความถูกต้องแบบสองปัจจัย"
|
||||
msgstr "ปิดใช้งานการรับรองความถูกต้องแบบ Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "เปิดใช้งานการรับรองความถูกต้องแบบสองปัจจัย"
|
||||
msgstr "เปิดใช้งานการรับรองความถูกต้องแบบ Two-factor"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "เปิดใช้งานการรับรองความถูกต้องแบบสองปัจจัยแล้ว"
|
||||
msgstr "เปิดใช้งานการรับรองความถูกต้องแบบ Two-factor แล้ว"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
"การตรวจสอบสิทธิ์แบบสองปัจจัยสามารถเปิดใช้งานได้สำหรับตัวคุณเองเท่านั้น"
|
||||
msgstr "การตรวจสอบสิทธิ์แบบ Two-factor สามารถเปิดใช้งานได้สำหรับตัวคุณเองเท่านั้น"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "การรับรองความถูกต้องแบบสองปัจจัยถูกปิดใช้งานสำหรับผู้ใช้ต่อไปนี้:%s"
|
||||
msgstr "การรับรองความถูกต้องแบบ Two-factor ถูกปิดใช้งานสำหรับผู้ใช้ต่อไปนี้:%s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
|
|
@ -422,26 +323,153 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "โค้ดยืนยัน"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "การยืนยันล้มเหลว โปรดตรวจสอบ 6 หลักอีกครั้ง"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "เช่น 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">หรือติดตั้งแอปรับรองความถูกต้อง</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">ติดตั้งแอปตรวจสอบความถูกต้องบนอุปกรณ์มือถือของคุณ</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">เมื่อได้รับการร้องขอให้สแกนบาร์โค้ดด้านล่าง</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">เมื่อได้รับการร้องขอให้คัดลอกคีย์ด้านล่าง</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">รายการยอดนิยม ได้แก่ Authy, Google Authenticator "
|
||||
#~ "หรือ Microsoft Authenticator</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-"
|
||||
#~ "muted\">บัญชีนี้ได้รับการป้องกันแล้ว!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-"
|
||||
#~ "muted\">บัญชีนี้ได้รับการป้องกันแล้ว!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "เพิ่มลงบน"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr "คุณแน่ใจไหม? ผู้ใช้อาจถูกขอให้ป้อนรหัส two-factor อีกครั้งบนอุปกรณ์เหล่านั้น"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr "คุณแน่ใจไหม? คุณอาจถูกขอให้ป้อนรหัส two-factor อีกครั้งบนอุปกรณ์เหล่านั้น"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "การตั้งค่าแอป Authenticator"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "คลิกที่ลิงก์นี้เพื่อเปิดแอปรับรองความถูกต้องของคุณ"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "อุปกรณ์"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "ปิดการใช้งาน 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "ใส่รหัสหกหลักของคุณด้านล่าง"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "มองหาปุ่ม \"เพิ่มบัญชี\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "บน Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "บน Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "เพิกถอน"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "เพิกถอนทั้งหมด"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "การตรวจสอบสิทธิ์แบบ Two-factor (\"2FA\") คือระบบการตรวจสอบสิทธิ์แบบสองชั้น\n"
|
||||
#~ " อันแรกใช้รหัสผ่านของคุณและอันที่สองใช้รหัสที่คุณได้รับจากแอปมือถือโดยเฉพาะ\n"
|
||||
#~ " แอปยอดนิยม ได้แก่ Authy, Google Authenticator หรือ "
|
||||
#~ "Microsoft Authenticator"
|
||||
|
|
|
|||
|
|
@ -1,37 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Buket Şeker <buket_skr@hotmail.com>, 2022
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Doğan Altunbay <doganaltunbay@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:46+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/tr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s on %(platform)s"
|
||||
|
||||
|
|
@ -43,105 +36,52 @@ msgstr "2 Faktörlü Kurulum Sihirbazı"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "2 Faktörlü Kimlik Doğrulama artık etkindir."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Daha fazla bilgi edinin"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Daha fazla bilgi edinin"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Etkin\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Hesabınız korunuyor!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Hesabınız korunuyor!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Veya bir kimlik doğrulama uygulaması yükleyin</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Mobil cihazınıza bir kimlik doğrulama uygulaması yükleyin</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">İstendiğinde, aşağıdaki barkodu tarayın</span>\n"
|
||||
" <span class=\"d-block d-md-none\">İstendiğinde, aşağıdaki anahtarı kopyalayın</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Popüler olanlar arasında Authy, Google "
|
||||
"Authenticator veya Microsoft Authenticator bulunur.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Hesap Güvenliği"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Etkinleştir"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Engelli\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Eklendi"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Ekstra güvenlik için önerilir.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr ""
|
||||
"Emin misiniz? Kullanıcıdan bu cihazlarda iki faktörlü kodları tekrar girmesi"
|
||||
" istenebilir"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Emin misiniz? Bu cihazlarda iki faktörlü kodları tekrar girmeniz istenebilir"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Bu anahtarı Authenticator uygulamanıza ekleyin"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -153,14 +93,8 @@ msgstr "Kimlik Doğrulama Kodu"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Kimlik Doğrulama Cihazı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Kimlik doğrulayıcı uygulama kurulumu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
|
|
@ -170,19 +104,21 @@ msgid "Cannot scan it?"
|
|||
msgstr "Tarayamıyor musunuz?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Kimlik doğrulama uygulamanızı açmak için bu bağlantıya tıklayın"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Kod Kontrolü"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
msgstr "Tarafından oluşturuldu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -197,25 +133,26 @@ msgstr "Açıklama"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Makina"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA'yı devre dışı bırak"
|
||||
msgid "Disable"
|
||||
msgstr "Devre dışı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "2 aşamalı girişi devre dışı bırak"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Sil"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -230,86 +167,69 @@ msgstr "2FA'yı etkinleştir"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Altı haneli kodunuzu aşağıya girin"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulamayı Etkinleştir"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Yönlendirme"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Son Kullanma Tarihi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Geçersiz kimlik doğrulama kodu biçimi."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Daha Fazla Bilgi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Limit türü"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Giriş"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "\"Hesap ekle\" düğmesini arayın"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Apple Store'da"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Google Play'de"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Geriye al"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Hepsini Geriye Al"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Authenticator uygulamanızda bu barkodu tarayın"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -321,21 +241,36 @@ msgstr "Kapsam"
|
|||
msgid "Secret"
|
||||
msgstr "Gizli"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "E-posta Gönder"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP hız sınırı kayıtları"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Doğrulama kodu yalnızca sayıları içermelidir"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Oturum açmak için, Authenticator uygulamanız tarafından sağlanan altı haneli"
|
||||
" kimlik doğrulama kodunu aşağıya girin. <br/>"
|
||||
"Oturum açmak için, Authenticator uygulamanız tarafından sağlanan altı haneli "
|
||||
"kimlik doğrulama kodunu aşağıya girin. <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "Totp Son Sayaç"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
|
|
@ -344,15 +279,12 @@ msgstr "Totp Gizliği"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Güvenilir Cihazlar"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulama Aktivasyonu"
|
||||
|
||||
|
|
@ -363,28 +295,6 @@ msgstr "İki Faktörlü Kimlik Doğrulama Aktivasyonu"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulama"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"İki Faktörlü Kimlik Doğrulama (\"2FA\"), bir çift kimlik doğrulama sistemidir.\n"
|
||||
" Birincisi şifrenizle ve ikincisi özel bir mobil uygulamadan aldığınız bir kodla yapılır.\n"
|
||||
" Popüler olanlar arasında Authy, Google Authenticator veya Microsoft Authenticator bulunur."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"İki Faktörlü Kimlik Doğrulama (\"2FA\"), bir çift kimlik doğrulama sistemidir.\n"
|
||||
" Birincisi şifrenizle ve ikincisi özel bir mobil uygulamadan aldığınız bir kodla yapılır.\n"
|
||||
" Popüler olanlar arasında Authy, Google Authenticator veya Microsoft Authenticator bulunur."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -403,14 +313,12 @@ msgstr "İki faktörlü kimlik doğrulama Etkin"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "İki faktörlü kimlik doğrulama zaten etkin"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
"İki faktörlü kimlik doğrulama yalnızca kendiniz için etkinleştirilebilir"
|
||||
|
|
@ -418,7 +326,6 @@ msgstr ""
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"İki faktörlü kimlik doğrulama, aşağıdaki kullanıcı(s) için devre dışı "
|
||||
|
|
@ -432,26 +339,164 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Doğrulama Kodu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "Doğrulama kodu"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Doğrulama başarısız oldu, lütfen 6 haneli kodu tekrar kontrol edin"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "Doğrulama başarısız oldu, lütfen en son 6 haneli kodu kullanın"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Uygulamanız tarafından verilen kodu yazın"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Hesabınız için gönderilen kimlik doğrulama postası sınırına ulaştınız, "
|
||||
"lütfen daha sonra tekrar deneyin."
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Hesabınız için kod doğrulama sınırına ulaştınız, lütfen daha sonra tekrar "
|
||||
"deneyin."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "örn.123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Veya bir kimlik doğrulama uygulaması "
|
||||
#~ "yükleyin</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Mobil cihazınıza bir kimlik doğrulama uygulaması yükleyin</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">İstendiğinde, aşağıdaki barkodu "
|
||||
#~ "tarayın</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">İstendiğinde, aşağıdaki anahtarı kopyalayın</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Popüler olanlar arasında Authy, Google "
|
||||
#~ "Authenticator veya Microsoft Authenticator bulunur.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Bu hesap "
|
||||
#~ "korunmaktadır!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Hesabınız "
|
||||
#~ "korunmaktadır!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Eklendi"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Emin misiniz? Kullanıcıdan bu cihazlarda iki faktörlü kodları tekrar "
|
||||
#~ "girmesi istenebilir"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Emin misiniz? Bu cihazlarda iki faktörlü kodları tekrar girmeniz "
|
||||
#~ "istenebilir"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Kimlik doğrulayıcı uygulama kurulumu"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Kimlik doğrulama uygulamanızı açmak için bu bağlantıya tıklayın"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Makina"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "2FA'yı devre dışı bırak"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Altı haneli kodunuzu aşağıya girin"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "\"Hesap ekle\" düğmesini arayın"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Apple Store'da"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Google Play'de"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Geriye al"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Hepsini Geriye Al"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "İki Faktörlü Kimlik Doğrulama (\"2FA\"), bir çift kimlik doğrulama "
|
||||
#~ "sistemidir.\n"
|
||||
#~ " Birincisi şifrenizle ve ikincisi özel bir "
|
||||
#~ "mobil uygulamadan aldığınız bir kodla yapılır.\n"
|
||||
#~ " Popüler olanlar arasında Authy, Google "
|
||||
#~ "Authenticator veya Microsoft Authenticator bulunur."
|
||||
|
|
|
|||
|
|
@ -1,29 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:16+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/uk/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s на %(platform)s"
|
||||
|
||||
|
|
@ -35,106 +34,41 @@ msgstr "Помічник двофакторного налаштування"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Двофакторну аутентифікацію тепер увімкнено."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Дізнатися більше "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Дізнатися більше"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Цей обліковий запис захищено!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Ваш обліковий запис захищено!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Або встановіть модуль аутентифікатора</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Встановіть модуль аутентифікатора на ваш мобільний пристрій</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Коли виникає такий запит, відскануйте штрих-код нижче</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Коли виникає такий запит, скопіюйте ключ нижче</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Популярні включають Authy, Google Authenticator "
|
||||
"або Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Безпека облікового запису"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Активувати"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Додано на"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Ви впевнені? Користувача можуть попросити знову ввести двофакторні коди на "
|
||||
"цих пристроях"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Ви впевнені? Вас можуть попросити знову ввести двофакторні коди на цих "
|
||||
"пристроях"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -146,14 +80,8 @@ msgstr "Код аутентифікації"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Пристрій аутентифікації"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Встановлення модуля аутентифікації"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
|
|
@ -163,16 +91,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Не можете відсканувати його?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Натисніть на це посилання, щоби відкрити ваш модуль аутентифікації"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Перевірка коду"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
|
@ -190,23 +120,24 @@ msgstr "Опис"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Пристрій"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Вимкнути 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Відключити"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Вимкнути двофакторну аутентифікацію"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Відмінити"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
|
|
@ -223,113 +154,112 @@ msgstr "Увімкнути 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Введіть ваш шестизначний код нижче"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизація HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Термін дії"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Формат коду аутентифікації недійсний."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Детальніше"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Тип ліміту"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Вхід"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Погляньте на кнопку \"Додати обліковий запис\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "На Apple Store"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "На Google Play"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qr-код"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Скасувати все"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Сфера"
|
||||
msgstr "Обсяг"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Секрет"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Надіслати ел. листа"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP входи обмежень швидкості"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Код верифікації має містити лише цифри"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Щоб увійти, введіть нижче шестизначний код аутентифікації, який надає ваш додаток Аутентифікатор.\n"
|
||||
"Щоб увійти, введіть нижче шестизначний код аутентифікації, який надає ваш "
|
||||
"додаток Аутентифікатор.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -337,15 +267,12 @@ msgstr "Ключ Totp"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Надійні пристрої"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Активація двофакторної аутентифікації"
|
||||
|
||||
|
|
@ -356,28 +283,6 @@ msgstr "Активація двофакторної аутентифікації
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Двофакторна аутентифікація"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двофакторна аутентифікація («2FA») — це система подвійної перевірки.\n"
|
||||
" Перша виконується за допомогою вашого пароля, а друга — за допомогою коду, який ви отримуєте зі спеціального мобільного додатка.\n"
|
||||
" Серед популярних — Authy, Google Authenticator або Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"Двофакторна автентифікація («2FA») — це система подвійної автентифікації.\n"
|
||||
" Перший виконується за допомогою вашого пароля, а другий – за допомогою коду, який ви отримуєте зі спеціального мобільного додатка.\n"
|
||||
" До популярних належать Authy, Google Authenticator або Microsoft Authenticator."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -396,21 +301,18 @@ msgstr "Двофакторна аутентифікація увімкнена"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Двофакторну аутентифікацію вже увімкнено"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Двофакторну аутентифікацію можна вмикати лише для себе"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Двофакторна аутентифікаці вимкнена для наступних користувачів: %s"
|
||||
|
||||
|
|
@ -422,26 +324,56 @@ msgstr "Url-адреса"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Код перевірки"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Верифікація не вдалася, перевірте ще раз шестизначний код"
|
||||
msgstr "Верифікація не вдалася, перевірте ще раз шестизначний код"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "напр., 123456"
|
||||
|
|
|
|||
|
|
@ -1,423 +1,456 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# AN Souphorn <ansouphorn@gmail.com>, 2023
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr ""
|
||||
msgstr "%(platform)sda %(browser)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr ""
|
||||
msgstr "2-omilli tasdiqlash ustasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "សកម្មភាព"
|
||||
msgstr "2-omilli tasdiqlash yoqildi."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-check text-success\"/> <span class=\"fw-bold ms-1 me-2\"> "
|
||||
"Yoqilgan </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-remove text-danger\"/> <span class=\"fw-bold ms-1\"> "
|
||||
"O‘chirilgan </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\"> Qo‘shimcha xavfsizlik uchun tavsiya etiladi. </"
|
||||
"span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "Bu kalitni Autentifikator ilovangizga qo‘shing"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#, fuzzy
|
||||
msgid "Authentication Code"
|
||||
msgstr ""
|
||||
msgstr "Tasdiqlash kodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
#, fuzzy
|
||||
msgid "Authentication Device"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr ""
|
||||
msgstr "Tasdiqlash qurilmasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Cancel"
|
||||
msgstr "លុបចោល"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Cannot scan it?"
|
||||
msgstr ""
|
||||
msgstr "Skanerlash imkonsizmi?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
#, fuzzy
|
||||
msgid "Code Checking"
|
||||
msgstr "Kodni tekshirish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
#, fuzzy
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
msgstr "Yaratuvchi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
#, fuzzy
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
msgstr "Yaratilgan sana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
#, fuzzy
|
||||
msgid "Creation Date"
|
||||
msgstr "ថ្ងៃបង្កើត"
|
||||
msgstr "Yaratilgan sana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "ការពិពណ៌នា"
|
||||
msgstr "Tavsif"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "ឧបករណ៍"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Disable"
|
||||
msgstr "O‘chirish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
#, fuzzy
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlashni o‘chirish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Discard"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#, fuzzy
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr ""
|
||||
msgstr "Bu qurilmada boshqa so‘ralmasin"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
msgstr "2-omilli tasdiqlashni yoqish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Ikki omilli tasdiqlashni yoqish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP ជុំវិញ"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
#, fuzzy
|
||||
msgid "Expiration Date"
|
||||
msgstr "Amal qilish muddati"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr ""
|
||||
msgstr "Noto‘g‘ri tasdiqlash kodi formati."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
#, fuzzy
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
#, fuzzy
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
msgstr "Oxirgi yangilangan:"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
#, fuzzy
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
msgstr "Oxirgi yangilangan sana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid "Learn More"
|
||||
msgstr "ស្វែងយល់បន្ថែម"
|
||||
msgstr "Batafsil ma'lumot"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
#, fuzzy
|
||||
msgid "Limit Type"
|
||||
msgstr "Cheklash turi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#, fuzzy
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "នៅលើ Apple Store "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "នៅលើ Google Play"
|
||||
msgstr "Kirish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
#, fuzzy
|
||||
msgid "Qrcode"
|
||||
msgstr ""
|
||||
msgstr "QR-kod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "ដកហូតវិញ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "Ushbu shtrix-kodni Autentifikator ilovangizda skanerlang"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
#, fuzzy
|
||||
msgid "Scope"
|
||||
msgstr "វិសាលភាព"
|
||||
msgstr "Qamrov"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
#, fuzzy
|
||||
msgid "Secret"
|
||||
msgstr "អាថ៌កំបាំង"
|
||||
msgstr "Maxfiy"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
#, fuzzy
|
||||
msgid "Send Email"
|
||||
msgstr "Xat yuborish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
#, fuzzy
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP tezlik cheklovi jurnallari"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr ""
|
||||
msgstr "Tasdiqlash kodi faqat raqamlardan iborat bo‘lishi kerak"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Kirish uchun Autentifikator ilovangiz taqdim etgan olti xonali tasdiqlash "
|
||||
"kodini quyida kiriting. <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
#, fuzzy
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "TOTP oxirgi hisoblagichi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
#, fuzzy
|
||||
msgid "Totp Secret"
|
||||
msgstr ""
|
||||
msgstr "TOTP maxfiy kodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid "Trusted Devices"
|
||||
msgstr ""
|
||||
msgstr "Ishonchli qurilmalar"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlashni faollashtirish"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
#, fuzzy
|
||||
msgid "Two-factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlash"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlash"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlash o‘chirildi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlash yoqildi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlash allaqachon yoqilgan"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
msgstr "Ikki omilli tasdiqlashni faqat o‘zingiz uchun yoqishingiz mumkin"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr ""
|
||||
"Quyidagi foydalanuvchi(lar) uchun ikki bosqichli autentifikatsiya "
|
||||
"o‘chirildi: %s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
#, fuzzy
|
||||
msgid "Url"
|
||||
msgstr "Url"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
#, fuzzy
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
msgstr "Foydalanuvchi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Verification Code"
|
||||
msgstr ""
|
||||
msgstr "Tasdiqlash kodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Verification code"
|
||||
msgstr "Tasdiqlash kodi"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Tasdiqlash amalga oshmadi, iltimos 6 raqamli kodni qayta tekshiring"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, fuzzy
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
"Tasdiqlash amalga oshmadi, iltimos eng so‘nggi 6 raqamli kodni kiriting"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "Ilovangiz tomonidan berilgan kodni kiriting"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
"Hisobingiz uchun yuborilgan autentifikatsiya xabarlari chegarasiga "
|
||||
"yetdingiz, iltimos keyinroq qayta urinib ko‘ring"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
"Hisobingiz uchun kod tasdiqlash urinishlari chegarasiga yetdingiz, iltimos "
|
||||
"keyinroq qayta urinib ko‘ring"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
#, fuzzy
|
||||
msgid "e.g. 123456"
|
||||
msgstr ""
|
||||
msgstr "masalan, 123456"
|
||||
|
|
@ -1,141 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# odooviet <cuong.nm@ictech.vn>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:17+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_totp/vi/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s trên %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "Công cụ Cài đặt 2 Yếu tố"
|
||||
msgstr "Công cụ cài đặt 2 yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "Xác thực 2 yếu tố đang bật."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Tìm hiểu thêm"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Tìm hiểu thêm"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Tài khoản này được bảo vệ!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Tài khoản của bạn được bảo vệ!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">Hoặc cài đặt một ứng dụng xác thực</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Cài đặt ứng dụng xác thực trên thiết bị di động của bạn</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">Khi yêu cầu thực hiện việc này, hãy quét mã vạch dưới đây</span>\n"
|
||||
" <span class=\"d-block d-md-none\">Khi yêu cầu thực hiện việc này, hãy sao chép khóa dưới đây</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">Các ứng dụng phổ biến bao gồm Authy, Google "
|
||||
"Authenticator hoặc Microsoft Authenticator.</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "Bảo mật tài khoản"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Kích hoạt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "Đã thêm vào"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
"Bạn có chắc không? Người dùng có thể được yêu cầu nhập lại mã xác thực hai "
|
||||
"yếu tố trên các thiết bị đó"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr ""
|
||||
"Bạn có chắc không? Bạn có thể được yêu cầu nhập lại mã xác thực hai yếu tố "
|
||||
"trên các thiết bị đó"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -147,14 +81,8 @@ msgstr "Mã Xác thực"
|
|||
msgid "Authentication Device"
|
||||
msgstr "Thiết bị Xác thực"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Cài đặt Ứng dụng Xác thực"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
|
|
@ -164,16 +92,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "Bạn không thể quét?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "Nhấp vào liên kết này để mở ứng dụng xác thực của bạn"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "Kiểm tra mã"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
|
@ -191,25 +121,26 @@ msgstr "Mô tả"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "Thiết bị"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Tắt 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "Vô hiệu hóa"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Tắt xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "Huỷ bỏ"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên Hiển thị"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -224,86 +155,69 @@ msgstr "Bật 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "Nhập mã gồm 6 chữ số của bạn dưới đây"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "Bật xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Định tuyến HTTP"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "Ngày hết hạn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "Định dạng mã xác thực không hợp lệ."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Chỉnh sửa Lần cuối vào"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "Ip"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật Lần cuối bởi"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật Lần cuối vào"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "Tìm hiểu thêm"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "Loại giới hạn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "Đăng nhập"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "Tìm nút \"Thêm một tài khoản\""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "Trên Kho ứng dụng Apple"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "Trên Kho ứng dụng Google"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "Thu hồi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "Thu hồi Tất cả"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -313,42 +227,55 @@ msgstr "Phạm vi"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Bí mật"
|
||||
msgstr "Secret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "Gửi email"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "Nhật ký giới hạn tỷ lệ TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "Mã xác minh chỉ được chứa số"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Để đăng nhập, hãy nhập mã xác thực gồm 6 chữ số do ứng dụng Authenticator của bạn cung cấp.\n"
|
||||
"Để đăng nhập, hãy nhập mã xác thực gồm 6 chữ số do ứng dụng Authenticator "
|
||||
"của bạn cung cấp.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Mã TOTP Bí mật"
|
||||
msgstr "Mã bí mật TOTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "Thiết bị Đáng tin cậy"
|
||||
msgstr "Thiết bị đáng tin cậy"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "Kích hoạt Xác thực Hai Yếu tố"
|
||||
msgstr "Kích hoạt xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -357,28 +284,6 @@ msgstr "Kích hoạt Xác thực Hai Yếu tố"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "Xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"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."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -397,21 +302,18 @@ msgstr "Xác thực hai yếu tố đang bật"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "Xác thực hai yếu tố đã bật"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "Xác thực hai yếu tố chỉ được bật cho bạn"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "Xác thực hai yếu tố đang tắt đối với (những) người dùng sau: %s"
|
||||
|
||||
|
|
@ -423,26 +325,160 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "Mã Xác minh"
|
||||
msgstr "Mã xác minh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "Xác minh không thành công, vui lòng kiểm tra lại mã gồm 6 chữ số"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "VD: 123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">Hoặc cài đặt một ứng dụng xác thực</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Cài đặt ứng dụng xác thực trên thiết bị di động của bạn</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">Khi yêu cầu thực hiện việc này, hãy "
|
||||
#~ "quét mã vạch dưới đây</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">Khi "
|
||||
#~ "yêu cầu thực hiện việc này, hãy sao chép khóa dưới đây</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">Các ứng dụng phổ biến bao gồm Authy, Google "
|
||||
#~ "Authenticator hoặc Microsoft Authenticator.</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Tài khoản này "
|
||||
#~ "được bảo vệ!</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Tài khoản của "
|
||||
#~ "bạn được bảo vệ!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "Đã thêm vào"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr ""
|
||||
#~ "Bạn có chắc không? Người dùng có thể được yêu cầu nhập lại mã xác thực "
|
||||
#~ "hai yếu tố trên các thiết bị đó"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr ""
|
||||
#~ "Bạn có chắc không? Bạn có thể được yêu cầu nhập lại mã xác thực hai yếu "
|
||||
#~ "tố trên các thiết bị đó"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "Cài đặt Ứng dụng Xác thực"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "Nhấp vào liên kết này để mở ứng dụng xác thực của bạn"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "Thiết bị"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "Tắt 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "Nhập mã gồm 6 chữ số của bạn dưới đây"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "Tìm nút \"Thêm một tài khoản\""
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "Trên Apple Store"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "Trên Google Play"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "Thu hồi"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "Thu hồi tất cả"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "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."
|
||||
|
|
|
|||
|
|
@ -1,32 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# digitalliuzg8888, 2022
|
||||
# lyper lai, 2023
|
||||
# Emily Jia <eji@odoo.com>, 2023
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Chloe Wang (chwa)" <chwa@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Emily Jia <eji@odoo.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-03 14:27+0000\n"
|
||||
"Last-Translator: \"Chloe Wang (chwa)\" <chwa@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/auth_totp/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s在%(platform)s"
|
||||
|
||||
|
|
@ -38,100 +35,52 @@ msgstr "2-Factor双因素设置向导"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "双重身份认证现已启用。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 了解更多"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 了解更多"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" 启用\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">这个帐户已受保护!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">您的账户受到保护!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">或者安装一个认证器应用程序</span>\n"
|
||||
" <span class=\"d-none d-md-block\">在您的移动设备上安装一个认证器应用程序</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">当被要求这样做时,请扫描下面的条形码。</span>\n"
|
||||
" <span class=\"d-block d-md-none\">当被要求这样做的时候,请复制下面的钥匙</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr "<span class=\"text-muted\">流行的包括Authy、谷歌认证器或微软认证器。</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "帐户安全"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "激活"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" 禁用\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "已添加"
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">\n"
|
||||
" 建议用于加强安全。\n"
|
||||
" </span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr "你确定吗?用户可能会被要求在这些设备上再次输入双因子码"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr "你确定吗?你可能会被要求在这些设备上再次输入双因子码"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr "在您的验证器应用程序中添加此密钥"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -143,36 +92,32 @@ msgstr "认证码"
|
|||
msgid "Authentication Device"
|
||||
msgstr "认证设备"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "认证器应用程序的设置"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "不能扫描吗?"
|
||||
msgstr "无法扫描?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "点击此链接,打开您的认证器应用程序"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "代码检查"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
|
|
@ -182,35 +127,36 @@ msgstr "创建时间"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
msgstr "说明"
|
||||
msgstr "描述"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "设备"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "禁用2FA"
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "禁用双因素认证"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "丢弃"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "在这个设备上不要再问了"
|
||||
msgstr "在此设备上不再询问"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
|
|
@ -220,86 +166,69 @@ msgstr "启用2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "在下面输入您的六位数代码"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "启用双因素身份验证"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 路由"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "有效期"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "无效的验证码格式。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "了解更多"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "限制类型"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "登录"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "寻找一个 \"添加账户 \"的按钮"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "在苹果应用商店"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "在谷歌应用市场"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "QR码"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "撤销"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "全部撤销"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr "在验证器应用程序中扫描此条形码"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -311,22 +240,37 @@ msgstr "作用范围"
|
|||
msgid "Secret"
|
||||
msgstr "密匙"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "发送电子邮件"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP速率限制日志"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "验证码应只包含数字"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"要登录,请在下面输入由Authenticator应用程序提供的六位数认证代码。\n"
|
||||
"如需登录,请在下方输入由 Authenticator 应用程序提供的六位数验证码。\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr "TOTP 最后计数器"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -334,17 +278,14 @@ msgstr "Totp密匙"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "受信任的设备"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "双重认证的激活"
|
||||
msgstr "双因子认证激活"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -353,28 +294,6 @@ msgstr "双重认证的激活"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "双重验证"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"双重认证(\"2FA\")是一个双重认证的系统。\n"
|
||||
" 第一个是用您的密码,第二个是用您从一个专门的移动应用程序获得的代码。\n"
|
||||
" 流行的包括Authy、谷歌认证器或微软认证器。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"双因素认证(“2FA”)是一种双重认证系统\n"
|
||||
" 第一个是你的密码,第二个是你从一个专门的移动应用程序获得的代码。\n"
|
||||
" 流行的包括授权,谷歌认证或微软认证。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -388,26 +307,23 @@ msgstr "Two-factor双重身份验证已停用"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
msgstr "启用Two-factor双重身份验证"
|
||||
msgstr "启用双重身份验证"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "双重验证已经被启用"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "双重验证只能为您自己启用"
|
||||
msgstr "只能为您自己启用双重验证"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "禁用以下用户的双重认证:%s。"
|
||||
|
||||
|
|
@ -419,26 +335,154 @@ msgstr "Url"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "验证码"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr "验证码"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "校验失败,请再次检查6位验证码"
|
||||
msgstr "校验失败,请再次检查 6 位验证码。"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr "验证失败,请使用最新的 6 位代码"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr "编写应用程序给出的代码"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr "您已达到账户认证邮件发送限制,请稍后再试。"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr "您已达到账户验证码请求限制,请稍后再试。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "例如: 123456"
|
||||
msgstr "例如:123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">或者安装一个认证器应用程序</span>\n"
|
||||
#~ " <span class=\"d-none d-md-block\">"
|
||||
#~ "在您的移动设备上安装一个认证器应用程序</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">当被要求这样做时,请扫描下面的条形码。</"
|
||||
#~ "span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">当被"
|
||||
#~ "要求这样做的时候,请复制下面的钥匙</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">常用的包括 Authy、Google Authenticator 或 "
|
||||
#~ "Microsoft Authenticator。</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">此账户受保护!</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">您的账户受到保"
|
||||
#~ "护!</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "已添加"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr "您确定吗?用户可能会被要求在这些设备上再次输入双因素代码"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr "您确定吗?您可能会被要求在这些设备上再次输入双因素代码"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "认证器应用程序的设置"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "点击此链接,打开您的认证器应用程序"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "设备"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "禁用2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "在下面输入您的六位数代码"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "寻找一个 \"添加账户 \"的按钮"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "在苹果应用商店"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "在谷歌应用市场"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "撤销"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "全部撤销"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "双因素认证(“2FA”)是一种双重认证系统\n"
|
||||
#~ " 第一个是您的密码,第二个是您从一个专门的移动应用程"
|
||||
#~ "序获得的代码。\n"
|
||||
#~ " 常用的包括 Authy、Google Authenticator 或 "
|
||||
#~ "Microsoft Authenticator。"
|
||||
|
|
|
|||
|
|
@ -1,29 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:03+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/auth_totp/zh_Hant/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(platform)s 上的 %(browser)s"
|
||||
|
||||
|
|
@ -35,100 +38,41 @@ msgstr "雙重要素驗證設置精靈"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "2-Factor authentication is now enabled."
|
||||
msgstr "雙重要素身份驗證現已啟用。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
msgstr ""
|
||||
"<i title=\"使用說明\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 了解更多"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<i title=\"Documentation\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" Learn More"
|
||||
"<i class=\"fa fa-check text-success\"/>\n"
|
||||
" <span class=\"fw-bold ms-1 me-2\">\n"
|
||||
" Enabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<i title=\"使用說明\" class=\"fa fa-fw o_button_icon fa-info-circle\"/>\n"
|
||||
" 了解更多"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">This account is protected!</span>"
|
||||
"<i class=\"fa fa-remove text-danger\"/>\n"
|
||||
" <span class=\"fw-bold ms-1\">\n"
|
||||
" Disabled\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">Your account is protected!</span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('totp_enabled', '=', False)]}\" class=\"text-"
|
||||
"muted\">您的帳戶受到保護!</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
" <span class=\"d-none d-md-block\">Install an authenticator app on your mobile device</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-md-none d-block\">或安裝驗證器應用</span><span class=\"d-none d-md-"
|
||||
"block\">程序 在您的手機上安裝驗證應用程序</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"d-none d-md-block\">When requested to do so, scan the barcode below</span>\n"
|
||||
" <span class=\"d-block d-md-none\">When requested to do so, copy the key below</span>"
|
||||
msgstr ""
|
||||
"<span class=\"d-none d-md-block\">如果需要,請掃描下面的條碼</span>\n"
|
||||
" <span class=\"d-block d-md-none\">如果需要,請複制下面的密鑰</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid ""
|
||||
"<span class=\"text-muted\">Popular ones include Authy, Google Authenticator "
|
||||
"or the Microsoft Authenticator.</span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-muted\">常用的包括 Authy、Google Authenticator 或 Microsoft "
|
||||
"Authenticator。</span>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Account Security"
|
||||
msgstr "賬戶安全"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "啟動"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Added On"
|
||||
msgstr "加入於"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"Are you sure? The user may be asked to enter two-factor codes again on those"
|
||||
" devices"
|
||||
msgstr "你確定嗎?用戶可能會被要求在這些設備上再次輸入雙因子碼"
|
||||
"<span class=\"text-muted\">\n"
|
||||
" Recommended for extra security.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
msgstr "你確定嗎?你可能會被要求在這些設備上再次輸入雙因子碼"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Add this key in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
|
|
@ -140,14 +84,8 @@ msgstr "驗證碼"
|
|||
msgid "Authentication Device"
|
||||
msgstr "認證設備"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "登入驗證應用程序設置"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
|
|
@ -157,16 +95,18 @@ msgid "Cannot scan it?"
|
|||
msgstr "無法掃描?"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Click on this link to open your authenticator app"
|
||||
msgstr "點選此連結打開您的身份驗證器應用程序"
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__code_check
|
||||
msgid "Code Checking"
|
||||
msgstr "程式碼檢查"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
msgstr "建立人員"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__create_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
|
@ -184,23 +124,24 @@ msgstr "說明"
|
|||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Device"
|
||||
msgstr "設備"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Disable 2FA"
|
||||
msgstr "停用 2FA"
|
||||
msgid "Disable"
|
||||
msgstr "停用"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "停用雙重要素驗證"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Discard"
|
||||
msgstr "捨棄"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
|
|
@ -217,86 +158,69 @@ msgstr "啟用 2FA"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Enter your six-digit code below"
|
||||
msgstr "在下面輸入您的六位數代碼"
|
||||
msgid "Enable Two-Factor Authentication"
|
||||
msgstr "啟用雙重要素驗證"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 路由"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__expiration_date
|
||||
msgid "Expiration Date"
|
||||
msgstr "過期日期"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "Invalid authentication code format."
|
||||
msgstr "身份驗證代碼格式無效"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device____last_update
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__ip
|
||||
msgid "Ip"
|
||||
msgstr "IP位址"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_uid
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__write_date
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Learn More"
|
||||
msgstr "了解更多"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__limit_type
|
||||
msgid "Limit Type"
|
||||
msgstr "限制類型"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Log in"
|
||||
msgstr "登入"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Look for an \"Add an account\" button"
|
||||
msgstr "尋找“添加帳戶”按鈕"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Apple Store"
|
||||
msgstr "於Apple Store下載"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "On Google Play"
|
||||
msgstr "於Google Play下載"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__qrcode
|
||||
msgid "Qrcode"
|
||||
msgstr "Qrcode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Revoke All"
|
||||
msgstr "全部取消"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Scan this barcode in your Authenticator app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
|
|
@ -308,22 +232,37 @@ msgstr "範圍"
|
|||
msgid "Secret"
|
||||
msgstr "密鑰"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields.selection,name:auth_totp.selection__auth_totp_rate_limit_log__limit_type__send_email
|
||||
msgid "Send Email"
|
||||
msgstr "發送電子郵件"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_rate_limit_log
|
||||
msgid "TOTP rate limit logs"
|
||||
msgstr "TOTP速率限制日誌"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The verification code should only contain numbers"
|
||||
msgstr "驗證碼應僅包含數字"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid ""
|
||||
"To login, enter below the six-digit authentication code provided by your Authenticator app.\n"
|
||||
"To login, enter below the six-digit authentication code provided by your "
|
||||
"Authenticator app.\n"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"如要登入,請在下方輸入由 Authenticator 身份驗證程式提供的 6 位數字驗證碼。\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_last_counter
|
||||
msgid "Totp Last Counter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
|
|
@ -331,15 +270,12 @@ msgstr "Totp 密鑰"
|
|||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_trusted_device_ids
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid "Trusted Devices"
|
||||
msgstr "已驗證設備"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-Factor Authentication Activation"
|
||||
msgstr "啟動雙重要素驗證"
|
||||
|
||||
|
|
@ -350,28 +286,6 @@ msgstr "啟動雙重要素驗證"
|
|||
msgid "Two-factor Authentication"
|
||||
msgstr "兩步驟驗證"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_form
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"雙重要素身份驗證(two-factor authentication,簡稱 2FA)是一種對身份進行雙重驗證的系統。\n"
|
||||
" 第一重驗證是核對個人密碼;第二重驗證是利用你指定的流動裝置上專用的應用程式,產生臨時代碼,以驗證身份。\n"
|
||||
" 目前較流行的專用驗證程式包括:Authy、Google Authenticator 以及 Microsoft Authenticator。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_field
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
"雙重要素身份驗證(two-factor authentication,簡稱 2FA)是一種對身份進行雙重驗證的系統。\n"
|
||||
" 第一重驗證是核對個人密碼;第二重驗證是利用你指定的流動裝置上專用的應用程式,產生臨時代碼,以驗證身份。\n"
|
||||
" 目前較流行的專用驗證程式包括:Authy、Google Authenticator 以及 Microsoft Authenticator。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
|
|
@ -390,21 +304,18 @@ msgstr "雙重要素驗證已啟用"
|
|||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr "已啟用兩步驟驗證"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr "只能為自己啟用兩步驟身份驗證"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for the following user(s): %s"
|
||||
msgstr "已為以下使用者停用雙重要素驗證:%s"
|
||||
|
||||
|
|
@ -416,26 +327,153 @@ msgstr "網址"
|
|||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_res_users
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_rate_limit_log__user_id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__user_id
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__code
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification Code"
|
||||
msgstr "驗證碼"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Verification code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#: code:addons/auth_totp/wizard/auth_totp_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Verification failed, please double-check the 6-digit code"
|
||||
msgstr "驗證失敗,請再檢查 6 位數字驗證碼。"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid "Verification failed, please use the latest 6-digit code"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Write the code given by your app"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of authentication mails sent for your account, please "
|
||||
"try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
msgid ""
|
||||
"You reached the limit of code verifications for your account, please try "
|
||||
"again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "e.g. 123456"
|
||||
msgstr "例:123456"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-md-none d-block\">Or install an authenticator app</span>\n"
|
||||
#~ " <span class=\"d-none d-md-"
|
||||
#~ "block\">Install an authenticator app on your mobile device</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-md-none d-block\">或安裝驗證器應用</span><span class=\"d-"
|
||||
#~ "none d-md-block\">程序 在您的手機上安裝驗證應用程序</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"d-none d-md-block\">When requested to do so, scan the "
|
||||
#~ "barcode below</span>\n"
|
||||
#~ " <span class=\"d-block d-md-"
|
||||
#~ "none\">When requested to do so, copy the key below</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"d-none d-md-block\">如果需要,請掃描下面的條碼</span>\n"
|
||||
#~ " <span class=\"d-block d-md-none\">如果"
|
||||
#~ "需要,請複制下面的密鑰</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"text-muted\">Popular ones include Authy, Google "
|
||||
#~ "Authenticator or the Microsoft Authenticator.</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"text-muted\">常用的包括 Authy、Google Authenticator 或 "
|
||||
#~ "Microsoft Authenticator。</span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">This account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">此帳戶受保護!</"
|
||||
#~ "span>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">Your account is "
|
||||
#~ "protected!</span>"
|
||||
#~ msgstr ""
|
||||
#~ "<span invisible=\"not totp_enabled\" class=\"text-muted\">您的帳戶受保護!"
|
||||
#~ "</span>"
|
||||
|
||||
#~ msgid "Added On"
|
||||
#~ msgstr "加入於"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? The user may be asked to enter two-factor codes again on "
|
||||
#~ "those devices"
|
||||
#~ msgstr "你確定嗎?用戶可能會被要求在這些設備上再次輸入雙因子碼"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
#~ "devices"
|
||||
#~ msgstr "你確定嗎?你可能會被要求在這些設備上再次輸入雙因子碼"
|
||||
|
||||
#~ msgid "Authenticator App Setup"
|
||||
#~ msgstr "登入驗證應用程序設置"
|
||||
|
||||
#~ msgid "Click on this link to open your authenticator app"
|
||||
#~ msgstr "點選此連結打開您的身份驗證器應用程序"
|
||||
|
||||
#~ msgid "Device"
|
||||
#~ msgstr "設備"
|
||||
|
||||
#~ msgid "Disable 2FA"
|
||||
#~ msgstr "停用 2FA"
|
||||
|
||||
#~ msgid "Enter your six-digit code below"
|
||||
#~ msgstr "在下面輸入您的六位數代碼"
|
||||
|
||||
#~ msgid "Look for an \"Add an account\" button"
|
||||
#~ msgstr "尋找“添加帳戶”按鈕"
|
||||
|
||||
#~ msgid "On Apple Store"
|
||||
#~ msgstr "於Apple Store下載"
|
||||
|
||||
#~ msgid "On Google Play"
|
||||
#~ msgstr "於Google Play下載"
|
||||
|
||||
#~ msgid "Revoke"
|
||||
#~ msgstr "取消"
|
||||
|
||||
#~ msgid "Revoke All"
|
||||
#~ msgstr "全部取消"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "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."
|
||||
#~ msgstr ""
|
||||
#~ "雙重要素身份驗證(two-factor authentication,簡稱 2FA)是一種對身份進行雙"
|
||||
#~ "重驗證的系統。\n"
|
||||
#~ " 第一重驗證是核對個人密碼;第二重驗證是利用你指定的"
|
||||
#~ "流動裝置上專用的應用程式,產生臨時代碼,以驗證身份。\n"
|
||||
#~ " 目前較流行的專用驗證程式包括:Authy、Google "
|
||||
#~ "Authenticator 以及 Microsoft Authenticator。"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import auth_totp
|
||||
from . import ir_http
|
||||
from . import auth_totp_rate_limit_log
|
||||
from . import res_users
|
||||
from . import totp
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import api, models
|
||||
from odoo.addons.auth_totp.controllers.home import TRUSTED_DEVICE_AGE
|
||||
from odoo import models
|
||||
from odoo.addons.auth_totp.controllers.home import TRUSTED_DEVICE_AGE_DAYS
|
||||
|
||||
import logging
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AuthTotpDevice(models.Model):
|
||||
class Auth_TotpDevice(models.Model):
|
||||
|
||||
# init is overriden in res.users.apikeys to create a secret column 'key'
|
||||
# use a different model to benefit from the secured methods while not mixing
|
||||
# two different concepts
|
||||
|
||||
_name = "auth_totp.device"
|
||||
_inherit = "res.users.apikeys"
|
||||
_name = 'auth_totp.device'
|
||||
_inherit = ["res.users.apikeys"]
|
||||
_description = "Authentication Device"
|
||||
_auto = False
|
||||
|
||||
|
|
@ -22,10 +22,17 @@ class AuthTotpDevice(models.Model):
|
|||
assert uid, "uid is required"
|
||||
return self._check_credentials(scope=scope, key=key) == uid
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_device(self):
|
||||
self._cr.execute("""
|
||||
DELETE FROM auth_totp_device
|
||||
WHERE create_date < (NOW() AT TIME ZONE 'UTC' - INTERVAL '%s SECONDS')
|
||||
""", [TRUSTED_DEVICE_AGE])
|
||||
_logger.info("GC'd %d totp devices entries", self._cr.rowcount)
|
||||
def _get_trusted_device_age(self):
|
||||
ICP = self.env['ir.config_parameter'].sudo()
|
||||
try:
|
||||
nbr_days = int(ICP.get_param('auth_totp.trusted_device_age', TRUSTED_DEVICE_AGE_DAYS))
|
||||
if nbr_days <= 0:
|
||||
nbr_days = None
|
||||
except ValueError:
|
||||
nbr_days = None
|
||||
|
||||
if nbr_days is None:
|
||||
_logger.warning("Invalid value for 'auth_totp.trusted_device_age', using default value.")
|
||||
nbr_days = TRUSTED_DEVICE_AGE_DAYS
|
||||
|
||||
return nbr_days * 86400 # seconds
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
from odoo import fields, models
|
||||
|
||||
|
||||
class AuthTotpRateLimitLog(models.TransientModel):
|
||||
_name = 'auth.totp.rate.limit.log'
|
||||
_description = 'TOTP rate limit logs'
|
||||
|
||||
_user_id_limit_type_create_date_idx = models.Index("(user_id, limit_type, create_date)")
|
||||
|
||||
user_id = fields.Many2one('res.users', required=True, readonly=True)
|
||||
ip = fields.Char(readonly=True)
|
||||
limit_type = fields.Selection([
|
||||
('send_email', 'Send Email'),
|
||||
('code_check', 'Code Checking'),
|
||||
], readonly=True)
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = 'ir.http'
|
||||
|
||||
def session_info(self):
|
||||
info = super().session_info()
|
||||
# because frontend session_info uses this key and is embedded in
|
||||
# the view source
|
||||
info["user_id"] = request.session.uid,
|
||||
return info
|
||||
|
|
@ -7,6 +7,8 @@ import logging
|
|||
import os
|
||||
import re
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.addons.base.models.res_users import check_identity
|
||||
from odoo.exceptions import AccessDenied, UserError
|
||||
|
|
@ -18,23 +20,30 @@ from odoo.addons.auth_totp.models.totp import TOTP, TOTP_SECRET_SIZE
|
|||
_logger = logging.getLogger(__name__)
|
||||
|
||||
compress = functools.partial(re.sub, r'\s', '')
|
||||
class Users(models.Model):
|
||||
|
||||
TOTP_RATE_LIMITS = {
|
||||
'send_email': (5, 3600),
|
||||
'code_check': (5, 3600),
|
||||
}
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
totp_secret = fields.Char(copy=False, groups=fields.NO_ACCESS, compute='_compute_totp_secret', inverse='_inverse_totp_secret', search='_search_totp_enable')
|
||||
totp_enabled = fields.Boolean(string="Two-factor authentication", compute='_compute_totp_enabled', search='_search_totp_enable')
|
||||
totp_secret = fields.Char(copy=False, groups=fields.NO_ACCESS, compute='_compute_totp_secret', inverse='_inverse_token')
|
||||
totp_last_counter = fields.Integer(copy=False, groups=fields.NO_ACCESS)
|
||||
totp_enabled = fields.Boolean(string="Two-factor authentication", compute='_compute_totp_enabled', search='_totp_enable_search')
|
||||
totp_trusted_device_ids = fields.One2many('auth_totp.device', 'user_id', string="Trusted Devices")
|
||||
|
||||
def init(self):
|
||||
super().init()
|
||||
if not sql.column_exists(self.env.cr, self._table, "totp_secret"):
|
||||
self.env.cr.execute("ALTER TABLE res_users ADD COLUMN totp_secret varchar")
|
||||
|
||||
@property
|
||||
def SELF_READABLE_FIELDS(self):
|
||||
return super().SELF_READABLE_FIELDS + ['totp_enabled', 'totp_trusted_device_ids']
|
||||
|
||||
def init(self):
|
||||
init_res = super().init()
|
||||
if not sql.column_exists(self.env.cr, self._table, "totp_secret"):
|
||||
self.env.cr.execute("ALTER TABLE res_users ADD COLUMN totp_secret varchar")
|
||||
return init_res
|
||||
|
||||
def _mfa_type(self):
|
||||
r = super()._mfa_type()
|
||||
if r is not None:
|
||||
|
|
@ -62,14 +71,29 @@ class Users(models.Model):
|
|||
def _get_session_token_fields(self):
|
||||
return super()._get_session_token_fields() | {'totp_secret'}
|
||||
|
||||
def _totp_check(self, code):
|
||||
sudo = self.sudo()
|
||||
key = base64.b32decode(sudo.totp_secret)
|
||||
match = TOTP(key).match(code)
|
||||
if match is None:
|
||||
_logger.info("2FA check: FAIL for %s %r", self, sudo.login)
|
||||
raise AccessDenied(_("Verification failed, please double-check the 6-digit code"))
|
||||
_logger.info("2FA check: SUCCESS for %s %r", self, sudo.login)
|
||||
def _check_credentials(self, credentials, env):
|
||||
if credentials['type'] == 'totp':
|
||||
self._totp_rate_limit('code_check')
|
||||
sudo = self.sudo()
|
||||
key = base64.b32decode(sudo.totp_secret)
|
||||
match = TOTP(key).match(credentials['token'])
|
||||
if match is None:
|
||||
_logger.info("2FA check: FAIL for %s %r", self, sudo.login)
|
||||
raise AccessDenied(_("Verification failed, please double-check the 6-digit code"))
|
||||
|
||||
if sudo.totp_last_counter and match <= sudo.totp_last_counter:
|
||||
_logger.warning("2FA check: REUSE for %s %r", self, sudo.login)
|
||||
raise AccessDenied(_("Verification failed, please use the latest 6-digit code"))
|
||||
|
||||
sudo.totp_last_counter = match
|
||||
_logger.info("2FA check: SUCCESS for %s %r", self, sudo.login)
|
||||
self._totp_rate_limit_purge('code_check')
|
||||
return {
|
||||
'uid': self.env.user.id,
|
||||
'auth_method': 'totp',
|
||||
'mfa': 'default',
|
||||
}
|
||||
return super()._check_credentials(credentials, env)
|
||||
|
||||
def _totp_try_setting(self, secret, code):
|
||||
if self.totp_enabled or self != self.env.user:
|
||||
|
|
@ -83,6 +107,7 @@ class Users(models.Model):
|
|||
return False
|
||||
|
||||
self.sudo().totp_secret = secret
|
||||
self.sudo().totp_last_counter = match
|
||||
if request:
|
||||
self.env.flush_all()
|
||||
# update session token so the user does not get logged out (cache cleared by change)
|
||||
|
|
@ -92,6 +117,40 @@ class Users(models.Model):
|
|||
_logger.info("2FA enable: SUCCESS for %s %r", self, self.login)
|
||||
return True
|
||||
|
||||
def _totp_rate_limit(self, limit_type):
|
||||
self.ensure_one()
|
||||
assert request, "A request is required to be able to rate limit TOTP related actions"
|
||||
limit, interval = TOTP_RATE_LIMITS[limit_type]
|
||||
RateLimitLog = self.env['auth.totp.rate.limit.log'].sudo()
|
||||
ip = request.httprequest.environ['REMOTE_ADDR']
|
||||
domain = [
|
||||
('user_id', '=', self.id),
|
||||
('create_date', '>=', datetime.now() - timedelta(seconds=interval)),
|
||||
('limit_type', '=', limit_type),
|
||||
]
|
||||
count = RateLimitLog.search_count(domain)
|
||||
if count >= limit:
|
||||
descriptions = {
|
||||
'send_email': _('You reached the limit of authentication mails sent for your account, please try again later.'),
|
||||
'code_check': _('You reached the limit of code verifications for your account, please try again later.'),
|
||||
}
|
||||
description = descriptions[limit_type]
|
||||
raise AccessDenied(description)
|
||||
RateLimitLog.create({
|
||||
'user_id': self.id,
|
||||
'ip': ip,
|
||||
'limit_type': limit_type,
|
||||
})
|
||||
|
||||
def _totp_rate_limit_purge(self, limit_type):
|
||||
self.ensure_one()
|
||||
assert request, "A request is required to be able to rate limit TOTP related actions"
|
||||
RateLimitLog = self.env['auth.totp.rate.limit.log'].sudo()
|
||||
RateLimitLog.search([
|
||||
('user_id', '=', self.id),
|
||||
('limit_type', '=', limit_type),
|
||||
]).unlink()
|
||||
|
||||
@check_identity
|
||||
def action_totp_disable(self):
|
||||
logins = ', '.join(map(repr, self.mapped('login')))
|
||||
|
|
@ -142,7 +201,7 @@ class Users(models.Model):
|
|||
'name': _("Two-Factor Authentication Activation"),
|
||||
'res_id': w.id,
|
||||
'views': [(False, 'form')],
|
||||
'context': self.env.context,
|
||||
'context': self.env.context | {'dialog_size': 'medium'},
|
||||
}
|
||||
|
||||
@check_identity
|
||||
|
|
@ -158,16 +217,20 @@ class Users(models.Model):
|
|||
return super().change_password(old_passwd, new_passwd)
|
||||
|
||||
def _compute_totp_secret(self):
|
||||
for user in self.filtered('id'):
|
||||
for user in self:
|
||||
if not user.id:
|
||||
user.totp_secret = user._origin.totp_secret
|
||||
continue
|
||||
self.env.cr.execute('SELECT totp_secret FROM res_users WHERE id=%s', (user.id,))
|
||||
user.totp_secret = self.env.cr.fetchone()[0]
|
||||
|
||||
def _inverse_totp_secret(self):
|
||||
for user in self.filtered('id'):
|
||||
def _inverse_token(self):
|
||||
self.sudo().totp_last_counter = False
|
||||
for user in self:
|
||||
secret = user.totp_secret if user.totp_secret else None
|
||||
self.env.cr.execute('UPDATE res_users SET totp_secret = %s WHERE id=%s', (secret, user.id))
|
||||
|
||||
def _search_totp_enable(self, operator, value):
|
||||
def _totp_enable_search(self, operator, value):
|
||||
value = not value if operator == '!=' else value
|
||||
if value:
|
||||
self.env.cr.execute("SELECT id FROM res_users WHERE totp_secret IS NOT NULL")
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
|
||||
"access_auth_totp_device_access_employee","TOTP Device access employees","model_auth_totp_device","base.group_user",1,0,0,0
|
||||
"access_auth_totp_device_access_portal","TOTP Device access portal","model_auth_totp_device","base.group_portal",1,0,0,0
|
||||
"access_auth_totp_rate_limit_log","access_auth_totp_rate_limit_log","model_auth_totp_rate_limit_log","base.group_user",0,0,0,0
|
||||
|
|
|
|||
|
|
|
@ -0,0 +1,113 @@
|
|||
import { rpc } from "@web/core/network/rpc";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
const openUserPreferenceSecurity = () => [{
|
||||
content: 'Open user account menu',
|
||||
trigger: '.o_user_menu .dropdown-toggle',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Open preferences / profile screen",
|
||||
trigger: '[data-menu=preferences]',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Switch to security tab",
|
||||
trigger: 'a[role=tab]:contains("Security")',
|
||||
run: 'click',
|
||||
}]
|
||||
|
||||
registry.category("web_tour.tours").add('apikeys_tour_setup', {
|
||||
url: '/odoo?debug=1', // Needed as API key part is now only displayed in debug mode
|
||||
steps: () => [
|
||||
...openUserPreferenceSecurity(), {
|
||||
content: "Open API keys wizard",
|
||||
trigger: 'button:contains("Add API Key")',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Check that we have to enter enhanced security mode",
|
||||
trigger: ".modal div:contains(Enter your current password)",
|
||||
}, {
|
||||
content: "Input password",
|
||||
trigger: '.modal [name=password] input',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: ".modal button:contains(Confirm Password)",
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Check that we're now on the key description dialog",
|
||||
trigger: '.modal p:contains("Enter a description of and purpose for the key.")',
|
||||
}, {
|
||||
content: "Enter description",
|
||||
trigger: '.modal [name=name] input',
|
||||
run: "edit my key",
|
||||
}, {
|
||||
content: "Confirm key creation",
|
||||
trigger: '.modal button:contains("Generate key")',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Check that we're on the last step & grab key",
|
||||
trigger: '.modal p:contains("Here is your new API key")',
|
||||
run: async () => {
|
||||
const key = document.querySelector("code [name=key] span").textContent;
|
||||
await rpc('/web/dataset/call_kw', {
|
||||
model: 'ir.logging', method: 'send_key',
|
||||
args: [key],
|
||||
kwargs: {},
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
trigger: "button:contains(Done)",
|
||||
run: "click",
|
||||
},
|
||||
...openUserPreferenceSecurity(),
|
||||
{
|
||||
content: "check that our key is present",
|
||||
trigger: '[name=api_key_ids] .o_kanban_record:contains("my key")',
|
||||
}]});
|
||||
|
||||
// deletes the previously created key
|
||||
registry.category("web_tour.tours").add('apikeys_tour_teardown', {
|
||||
url: '/odoo?debug=1', // Needed as API key part is now only displayed in debug mode
|
||||
steps: () => [{
|
||||
content: 'Open preferences',
|
||||
trigger: '.o_user_menu .dropdown-toggle',
|
||||
run: "click",
|
||||
}, {
|
||||
trigger: '[data-menu=preferences]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Switch to security tab",
|
||||
trigger: 'a[role=tab]:contains("Security")',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Open kanban dropdown menu of the key",
|
||||
trigger: '[name=api_key_ids] .o_kanban_record:contains("my key") .oe_kanban_action[name="remove"]',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Input password for security mode again",
|
||||
trigger: ".modal [name=password] input",
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "And confirm",
|
||||
trigger: ".modal button:contains(Confirm Password)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: "body:not(:has(.modal))",
|
||||
},
|
||||
{
|
||||
content: 'Re-open preferences again',
|
||||
trigger: '.o_user_menu .dropdown-toggle',
|
||||
run: "click",
|
||||
}, {
|
||||
trigger: '[data-menu=preferences]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Switch to security tab",
|
||||
trigger: 'a[role=tab]:contains("Security")',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Check that there's no more keys",
|
||||
trigger: "body:not(:has(.o_notebook [name=api_key_ids]))",
|
||||
}]});
|
||||
|
|
@ -1,339 +1,424 @@
|
|||
odoo.define('auth_totp.tours', function(require) {
|
||||
"use strict";
|
||||
|
||||
const tour = require('web_tour.tour');
|
||||
const ajax = require('web.ajax');
|
||||
import { WORKER_STATE } from "@bus/workers/websocket_worker";
|
||||
import { rpc } from "@web/core/network/rpc";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { stepUtils } from "@web_tour/tour_utils";
|
||||
import { whenReady } from "@odoo/owl";
|
||||
|
||||
function openRoot() {
|
||||
return [{
|
||||
content: "return to client root to avoid race condition",
|
||||
trigger: 'body',
|
||||
run() {
|
||||
$('body').addClass('wait');
|
||||
window.location = '/web';
|
||||
}
|
||||
document.querySelector("body").classList.add("wait");
|
||||
window.location = '/odoo';
|
||||
},
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "wait for client reload",
|
||||
trigger: 'body:not(.wait)',
|
||||
run() {}
|
||||
}];
|
||||
}
|
||||
function openUserProfileAtSecurityTab() {
|
||||
function openUserPreferencesAtSecurityTab() {
|
||||
return [{
|
||||
content: 'Open user account menu',
|
||||
trigger: '.o_user_menu .oe_topbar_name',
|
||||
trigger: '.o_user_menu .dropdown-toggle',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Open preferences / profile screen",
|
||||
trigger: '[data-menu=settings]',
|
||||
content: "Open My Preferences",
|
||||
trigger: '[data-menu=preferences]',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "wait for security tab",
|
||||
trigger: 'a[role=tab]:contains("Security")',
|
||||
}, {
|
||||
content: "Switch to security tab",
|
||||
trigger: 'a[role=tab]:contains("Account Security")',
|
||||
trigger: 'a[role=tab]:contains("Security")',
|
||||
run: 'click',
|
||||
}];
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks that the TOTP button is in the specified state (true = enabled =
|
||||
* can disable, false = disabled = can enable), then closes the profile dialog
|
||||
* can disable, false = disabled = can enable), then closes the preferences dialog
|
||||
* if it's one (= hr not installed).
|
||||
*
|
||||
* If no totp state is provided, just checks that the toggle exists.
|
||||
*/
|
||||
function closeProfileDialog({content, totp_state}) {
|
||||
function closePreferencesDialog({content, totp_state}) {
|
||||
let trigger;
|
||||
switch (totp_state) {
|
||||
case true: trigger = 'button[name=action_totp_disable]'; break;
|
||||
case false: trigger = 'button[name=action_totp_enable_wizard]'; break;
|
||||
case undefined: trigger = 'button.o_auth_2fa_btn'; break;
|
||||
case undefined: trigger = 'div:contains("Two-factor Authentication") + button'; break;
|
||||
default: throw new Error(`Invalid totp state ${totp_state}`)
|
||||
}
|
||||
|
||||
return [{
|
||||
content,
|
||||
trigger: 'a[role=tab]:contains("Security").active',
|
||||
},
|
||||
{
|
||||
trigger,
|
||||
run() {
|
||||
const $modal = this.$anchor.parents('.o_dialog_container');
|
||||
if ($modal.length) {
|
||||
$modal.find('button[name=preference_cancel]').click()
|
||||
async run(helpers) {
|
||||
const modal = document.querySelector(".o_dialog");
|
||||
if (modal) {
|
||||
modal.querySelector("button[name=preference_cancel]").click();
|
||||
}
|
||||
}
|
||||
}, {
|
||||
trigger: 'body',
|
||||
async run() {
|
||||
while (document.querySelector('.o_dialog_container .o_dialog')) {
|
||||
await Promise.resolve();
|
||||
}
|
||||
this.$anchor.addClass('dialog-closed');
|
||||
},
|
||||
}, {
|
||||
trigger: 'body.dialog-closed',
|
||||
run() {},
|
||||
},
|
||||
{
|
||||
trigger: 'body:not(:has(.o_dialog))',
|
||||
}];
|
||||
}
|
||||
|
||||
tour.register('totp_tour_setup', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [...openUserProfileAtSecurityTab(), {
|
||||
registry.category("web_tour.tours").add('totp_tour_setup', {
|
||||
url: '/odoo',
|
||||
steps: () => [
|
||||
...openUserPreferencesAtSecurityTab(),
|
||||
{
|
||||
content: "Open totp wizard",
|
||||
trigger: 'button[name=action_totp_enable_wizard]',
|
||||
}, {
|
||||
trigger: 'a[role=tab]:contains("Security").active',
|
||||
},
|
||||
{
|
||||
trigger: "button[name=action_totp_enable_wizard]",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: ".modal div:contains(Enter your current password)",
|
||||
},
|
||||
{
|
||||
content: "Check that we have to enter enhanced security mode and input password",
|
||||
extra_trigger: 'div:contains("enter your password")',
|
||||
trigger: '[name=password] input',
|
||||
run: 'text demo',
|
||||
run: 'edit test_user',
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Check the wizard has opened",
|
||||
trigger: 'li:contains("When requested to do so")',
|
||||
run() {}
|
||||
trigger: '.modal:contains("Two-Factor Authentication Activation")',
|
||||
}, {
|
||||
content: "Get secret from collapsed div",
|
||||
trigger: 'a:contains("Cannot scan it?")',
|
||||
trigger: `.modal a:contains("Cannot scan it?")`,
|
||||
async run(helpers) {
|
||||
const $secret = this.$anchor.closest('div').find('[name=secret] span:first-child');
|
||||
const $copyBtn = $secret.find('button');
|
||||
$copyBtn.remove();
|
||||
const token = await ajax.jsonRpc('/totphook', 'call', {
|
||||
secret: $secret.text()
|
||||
const secret = this.anchor
|
||||
.closest("div")
|
||||
.querySelector("[name=secret] span:first-child");
|
||||
const copyBtn = secret.querySelector("button");
|
||||
if (copyBtn) {
|
||||
copyBtn.remove();
|
||||
}
|
||||
const token = await rpc('/totphook', {
|
||||
secret: secret.textContent,
|
||||
offset: 0,
|
||||
});
|
||||
helpers.text(token, '[name=code] input');
|
||||
helpers.click('button.btn-primary:contains(Activate)');
|
||||
$('body').addClass('got-token')
|
||||
await helpers.edit(token, '[name=code] input');
|
||||
}
|
||||
}, {
|
||||
content: 'wait for rpc',
|
||||
trigger: 'body.got-token',
|
||||
run() {}
|
||||
},
|
||||
{
|
||||
trigger: ".modal button.btn-primary:contains(Enable Two-Factor Authentication)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: ".o_notification_content:contains(2-Factor authentication is now enabled)",
|
||||
},
|
||||
...openRoot(),
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...closeProfileDialog({
|
||||
...openUserPreferencesAtSecurityTab(),
|
||||
...closePreferencesDialog({
|
||||
content: "Check that the button has changed",
|
||||
totp_state: true,
|
||||
}),
|
||||
]);
|
||||
]});
|
||||
|
||||
tour.register('totp_login_enabled', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
registry.category("web_tour.tours").add('totp_login_enabled', {
|
||||
url: '/',
|
||||
steps: () => [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
isActive: ["body:not(:has(input#login))"],
|
||||
trigger: "a:contains(Sign in)",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "expect totp screen",
|
||||
trigger: 'label:contains(Authentication Code)',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "input incorrect code",
|
||||
trigger: 'input[name=totp_token]',
|
||||
async run(helpers) {
|
||||
// set the offset in the past, so the token will be always wrong
|
||||
await rpc("/totphook", { offset: -2 });
|
||||
helpers.edit("123456");
|
||||
}
|
||||
}, {
|
||||
trigger: `button:contains("Log in")`,
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "using an incorrect token should fail",
|
||||
trigger: "p.alert.alert-danger:contains(Verification failed, please double-check the 6-digit code)",
|
||||
}, {
|
||||
content: "reuse same code",
|
||||
trigger: 'input[name=totp_token]',
|
||||
async run(helpers) {
|
||||
// send the same token as the one last one from the setup tour
|
||||
const token = await rpc("/totphook", { offset: 0 });
|
||||
helpers.edit(token);
|
||||
}
|
||||
}, {
|
||||
trigger: `button:contains("Log in")`,
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "reusing the same token should fail",
|
||||
trigger: "p.alert.alert-danger:contains(Verification failed, please use the latest 6-digit code)",
|
||||
}, {
|
||||
content: "input code",
|
||||
trigger: 'input[name=totp_token]',
|
||||
async run(helpers) {
|
||||
// TODO: if tours are ever async-aware the click should get moved out,
|
||||
// but currently there's no great way to make the tour wait until
|
||||
// we've retrieved and set the token: `:empty()` is aboutthe text
|
||||
// content of the HTML element, not the JS value property. We
|
||||
// could set a class but that's really no better than
|
||||
// procedurally clicking the button after we've set the input.
|
||||
const token = await ajax.jsonRpc('/totphook', 'call', {});
|
||||
helpers.text(token);
|
||||
helpers.click('button:contains("Log in")');
|
||||
const token = await rpc('/totphook', { offset: 1 });
|
||||
helpers.edit(token);
|
||||
}
|
||||
},
|
||||
{
|
||||
trigger: `button:contains("Log in")`,
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "check we're logged in",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
run() {}
|
||||
}]);
|
||||
trigger: ".o_user_menu .dropdown-toggle",
|
||||
}]});
|
||||
|
||||
tour.register('totp_login_device', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
registry.category("web_tour.tours").add('totp_login_device', {
|
||||
url: '/',
|
||||
steps: () => [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
isActive: ["body:not(:has(input#login))"],
|
||||
trigger: "a:contains(Sign in)",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "expect totp screen",
|
||||
trigger: 'label:contains(Authentication Code)',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "check remember device box",
|
||||
trigger: 'label[for=switch-remember]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "input code",
|
||||
trigger: 'input[name=totp_token]',
|
||||
async run(helpers) {
|
||||
const token = await ajax.jsonRpc('/totphook', 'call', {})
|
||||
helpers.text(token);
|
||||
helpers.click('button:contains("Log in")');
|
||||
const token = await rpc('/totphook', { offset: 2 });
|
||||
helpers.edit(token);
|
||||
}
|
||||
}, {
|
||||
},
|
||||
{
|
||||
trigger: "button:contains(Log in)",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
trigger: ".o_web_client .o_navbar",
|
||||
async run() {
|
||||
await whenReady();
|
||||
}
|
||||
},
|
||||
{
|
||||
trigger: ".o_web_client .o_navbar",
|
||||
async run() {
|
||||
await new Promise((resolve) => {
|
||||
const bus = odoo.__WOWL_DEBUG__.root.env.services.bus_service;
|
||||
bus.addEventListener("BUS:CONNECT", resolve, { once: true });
|
||||
if (bus.workerState === WORKER_STATE.CONNECTED) {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
{
|
||||
content: "check we're logged in",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
trigger: ".o_user_menu .dropdown-toggle",
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "click the Log out button",
|
||||
trigger: '.dropdown-item[data-menu=logout]',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "check that we're back on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Log in)'
|
||||
trigger: 'input#login, a:contains(Log in)',
|
||||
run: "edit Test",
|
||||
}, {
|
||||
content: "input login again",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: 'input password again',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "click da button again",
|
||||
trigger: 'button:contains("Log in")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "check we're logged in without 2FA",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
run() {}
|
||||
trigger: ".o_user_menu .dropdown-toggle",
|
||||
},
|
||||
// now go and disable two-factor authentication would be annoying to do in a separate tour
|
||||
// because we'd need to login & totp again as HttpCase.authenticate can't
|
||||
// succeed w/ totp enabled
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...openUserPreferencesAtSecurityTab(),
|
||||
{
|
||||
content: "Open totp wizard",
|
||||
trigger: 'button[name=action_totp_disable]',
|
||||
}, {
|
||||
trigger: 'a[role=tab]:contains("Security").active',
|
||||
},
|
||||
{
|
||||
trigger: "button[name=action_totp_disable]",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: ".modal div:contains(Enter your current password)",
|
||||
},
|
||||
{
|
||||
content: "Check that we have to enter enhanced security mode and input password",
|
||||
extra_trigger: 'div:contains("enter your password")',
|
||||
trigger: '[name=password] input',
|
||||
run: 'text demo',
|
||||
trigger: '.modal [name=password] input',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
trigger: ".modal button:contains(Confirm Password)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger:".o_notification_content:contains(Two-factor authentication disabled)",
|
||||
},
|
||||
...openRoot(),
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...closeProfileDialog({
|
||||
...openUserPreferencesAtSecurityTab(),
|
||||
...closePreferencesDialog({
|
||||
content: "Check that the button has changed",
|
||||
totp_state: false
|
||||
}),
|
||||
]);
|
||||
]});
|
||||
|
||||
tour.register('totp_login_disabled', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
registry.category("web_tour.tours").add('totp_login_disabled', {
|
||||
url: '/',
|
||||
steps: () => [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
isActive: ["body:not(:has(input#login))"],
|
||||
trigger: "a:contains(Sign in)",
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
run: "edit test_user",
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
// normally we'd end the tour here as it's all we care about but there are a
|
||||
// bunch of ongoing queries from the loading of the web client which cause
|
||||
// issues, so go and open the preferences / profile screen to make sure
|
||||
// issues, so go and open the preferences screen to make sure
|
||||
// everything settles down
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...openUserPreferencesAtSecurityTab(),
|
||||
// close the dialog if that makes sense
|
||||
...closeProfileDialog({})
|
||||
]);
|
||||
...closePreferencesDialog({})
|
||||
]});
|
||||
|
||||
const columns = {};
|
||||
tour.register('totp_admin_disables', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [tour.stepUtils.showAppsMenuItem(), {
|
||||
registry.category("web_tour.tours").add('totp_admin_disables', {
|
||||
url: '/odoo',
|
||||
steps: () => [stepUtils.showAppsMenuItem(), {
|
||||
content: 'Go to settings',
|
||||
trigger: '[data-menu-xmlid="base.menu_administration"]'
|
||||
trigger: '[data-menu-xmlid="base.menu_administration"]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: 'Wait for page',
|
||||
trigger: '.o_menu_brand:contains("Settings")',
|
||||
run() {}
|
||||
}, {
|
||||
content: "Open Users menu",
|
||||
trigger: '[data-menu-xmlid="base.menu_users"]'
|
||||
trigger: '[data-menu-xmlid="base.menu_users"]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Open Users view",
|
||||
trigger: '[data-menu-xmlid="base.menu_action_res_users"]',
|
||||
run(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"]'));
|
||||
}
|
||||
}
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Find Demo User",
|
||||
trigger: 'td.o_data_cell:contains("demo")',
|
||||
run(helpers) {
|
||||
const $titles = this.$anchor.closest('table').find('tr:first th');
|
||||
for (let i=0; i<$titles.length; ++i) {
|
||||
columns[$titles[i].getAttribute('data-name')] = i;
|
||||
}
|
||||
const $row = this.$anchor.closest('tr');
|
||||
const sel = $row.find('.o_list_record_selector input[type=checkbox]');
|
||||
helpers.click(sel);
|
||||
}
|
||||
content: "Find test_user User",
|
||||
trigger: 'tr:has(td.o_data_cell:contains("test_user")) ' +
|
||||
'.o_list_record_selector input[type=checkbox]',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Open Actions menu",
|
||||
trigger: 'button.dropdown-toggle:contains("Action")'
|
||||
trigger: 'button.dropdown-toggle:contains("Action")',
|
||||
run: "click",
|
||||
}, {
|
||||
content: "Select totp remover",
|
||||
trigger: 'span.dropdown-item:contains(Disable two-factor authentication)'
|
||||
}, { // enhanced security yo
|
||||
trigger: 'span.dropdown-item:contains(Disable two-factor authentication)',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: ".modal div:contains(Enter your current password)",
|
||||
},
|
||||
{ // enhanced security yo
|
||||
content: "Check that we have to enter enhanced security mode & input password",
|
||||
extra_trigger: 'div:contains("enter your password")',
|
||||
trigger: '[name=password] input',
|
||||
run: 'text admin',
|
||||
trigger: '.modal [name=password] input',
|
||||
run: "edit admin",
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
}, {
|
||||
trigger: ".modal button:contains(Confirm Password)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: "Wait for user to be unchecked (~ action done)",
|
||||
trigger: 'tr:has(td.o_data_cell:contains(test_user)) ' +
|
||||
'.o_list_record_selector input[type=checkbox]:not(:checked)',
|
||||
},
|
||||
{
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(demo)",
|
||||
trigger: "td.o_data_cell:contains(test_user)",
|
||||
run: "click",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, ...closeProfileDialog({
|
||||
content: "check that demo user has been de-totp'd",
|
||||
totp_state: false,
|
||||
}),
|
||||
])
|
||||
});
|
||||
content: "wait for Security Tab to appear",
|
||||
trigger: "a.nav-link:contains(Security)",
|
||||
},{
|
||||
content: "go to Security Tab",
|
||||
trigger: "a.nav-link:contains(Security)",
|
||||
run: "click",
|
||||
}, {
|
||||
content: "check 2FA button: should be disabled",
|
||||
trigger: 'body:not(:has(button[name=action_totp_enable_wizard]))',
|
||||
}
|
||||
]})
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
from . import test_apikeys
|
||||
from . import test_totp
|
||||
|
|
|
|||
|
|
@ -0,0 +1,58 @@
|
|||
import logging
|
||||
|
||||
from odoo import api
|
||||
from odoo.tests import HttpCase, get_db_name, tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.auth_totp.tests.test_totp import TestTOTPMixin
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestAPIKeys(TestTOTPMixin, HttpCase):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
|
||||
self.messages = []
|
||||
|
||||
@api.model
|
||||
def log(inst, *args, **kwargs):
|
||||
self.messages.append((inst, args, kwargs))
|
||||
self.registry['ir.logging'].send_key = log
|
||||
|
||||
@self.addCleanup
|
||||
def remove_callback():
|
||||
del self.registry['ir.logging'].send_key
|
||||
|
||||
ml = mute_logger('odoo.addons.rpc.controllers.xmlrpc')
|
||||
ml.__enter__() # noqa: PLC2801
|
||||
self.addCleanup(ml.__exit__)
|
||||
|
||||
def test_addremove(self):
|
||||
db = get_db_name()
|
||||
self.start_tour('/odoo', 'apikeys_tour_setup', login=self.user_test.login)
|
||||
self.assertEqual(len(self.user_test.api_key_ids), 1, "the test user should now have a key")
|
||||
|
||||
[(_, [key], [])] = self.messages
|
||||
|
||||
uid = self.xmlrpc_common.authenticate(db, self.user_test.login, key, {})
|
||||
[r] = self.xmlrpc_object.execute_kw(
|
||||
db, uid, key,
|
||||
'res.users', 'read', [uid, ['login']]
|
||||
)
|
||||
self.assertEqual(
|
||||
r['login'], self.user_test.login,
|
||||
"the key should be usable as a way to perform RPC calls"
|
||||
)
|
||||
self.start_tour('/odoo', 'apikeys_tour_teardown', login=self.user_test.login)
|
||||
|
||||
def test_apikeys_totp(self):
|
||||
db = get_db_name()
|
||||
self.install_totphook()
|
||||
self.start_tour('/odoo', 'apikeys_tour_setup', login=self.user_test.login)
|
||||
self.start_tour('/odoo', 'totp_tour_setup', login=self.user_test.login)
|
||||
[(_, [key], [])] = self.messages # pylint: disable=unbalanced-tuple-unpacking
|
||||
uid = self.xmlrpc_common.authenticate(db, self.user_test.login, key, {})
|
||||
self.assertEqual(uid, self.user_test.id)
|
||||
|
|
@ -6,70 +6,102 @@ from xmlrpc.client import Fault
|
|||
from passlib.totp import TOTP
|
||||
|
||||
from odoo import http
|
||||
from odoo.addons.base.tests.common import HttpCaseWithUserDemo
|
||||
from odoo.tests import tagged, get_db_name
|
||||
from odoo.tests import tagged, get_db_name, new_test_user, HttpCase
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.auth_totp.models.totp import TOTP as auth_TOTP
|
||||
|
||||
from ..controllers.home import Home
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class TestTOTPCommon:
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
class TestTOTPMixin:
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.user_test = new_test_user(
|
||||
cls.env, 'test_user', password='test_user', tz='UTC',
|
||||
)
|
||||
|
||||
ml = mute_logger('odoo.addons.rpc.controllers.xmlrpc')
|
||||
ml.__enter__() # noqa: PLC2801
|
||||
cls.addClassCleanup(ml.__exit__)
|
||||
|
||||
def install_totphook(self):
|
||||
baseline_time = time.time()
|
||||
last_offset = 0
|
||||
totp = None
|
||||
|
||||
# might be possible to do client-side using `crypto.subtle` instead of
|
||||
# this horror show, but requires working on 64b integers, & BigInt is
|
||||
# significantly less well supported than crypto
|
||||
def totp_hook(self, secret=None):
|
||||
nonlocal totp
|
||||
def totp_hook(self, secret=None, offset=0):
|
||||
nonlocal totp, last_offset
|
||||
last_offset = offset * 30
|
||||
if totp is None:
|
||||
totp = TOTP(secret)
|
||||
if secret:
|
||||
return totp.generate().token
|
||||
else:
|
||||
# on check, take advantage of window because previous token has been
|
||||
# "burned" so we can't generate the same, but tour is so fast
|
||||
# we're pretty certainly within the same 30s
|
||||
return totp.generate(time.time() + 30).token
|
||||
|
||||
# generate the token for the given time offset
|
||||
# we can't generate the same token twice, but tour is so fast
|
||||
# we're pretty certainly within the same 30s
|
||||
token = totp.generate(baseline_time + last_offset).token
|
||||
_logger.info("TOTP secret:%s offset:%s token:%s", secret, offset, token)
|
||||
return token
|
||||
# because not preprocessed by ControllerType metaclass
|
||||
totp_hook.routing_type = 'json'
|
||||
self.env['ir.http']._clear_routing_map()
|
||||
self.env.registry.clear_cache('routing')
|
||||
# patch Home to add test endpoint
|
||||
Home.totp_hook = http.route('/totphook', type='json', auth='none')(totp_hook)
|
||||
Home.totp_hook = http.route('/totphook', type='jsonrpc', auth='none')(totp_hook)
|
||||
|
||||
def totp_match(self, code, t=None, **kwargs):
|
||||
# Allow going beyond the 30s window
|
||||
return origin_match(self, code, t=baseline_time + last_offset, **kwargs)
|
||||
|
||||
origin_match = auth_TOTP.match
|
||||
auth_TOTP.match = totp_match
|
||||
|
||||
# remove endpoint and destroy routing map
|
||||
@self.addCleanup
|
||||
def _cleanup():
|
||||
del Home.totp_hook
|
||||
self.env['ir.http']._clear_routing_map()
|
||||
auth_TOTP.match = origin_match
|
||||
self.env.registry.clear_cache('routing')
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestTOTP(TestTOTPCommon, HttpCaseWithUserDemo):
|
||||
class TestTOTP(TestTOTPMixin, HttpCase):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.install_totphook()
|
||||
|
||||
def test_totp(self):
|
||||
# 1. Enable 2FA
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
self.start_tour('/odoo', 'totp_tour_setup', login='test_user')
|
||||
|
||||
# 2. Verify that RPC is blocked because 2FA is on.
|
||||
self.assertFalse(
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {}),
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'test_user', 'test_user', {}),
|
||||
"Should not have returned a uid"
|
||||
)
|
||||
self.assertFalse(
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {'interactive': True}),
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'test_user', 'test_user', {'interactive': True}),
|
||||
'Trying to fake the auth type should not work'
|
||||
)
|
||||
uid = self.user_demo.id
|
||||
with self.assertRaisesRegex(Fault, r'Access Denied'), mute_logger('odoo.http'):
|
||||
uid = self.user_test.id
|
||||
with self.assertRaisesRegex(Fault, r'Access Denied'), mute_logger("odoo.http"):
|
||||
self.xmlrpc_object.execute_kw(
|
||||
get_db_name(), uid, 'demo',
|
||||
get_db_name(), uid, 'test_user',
|
||||
'res.users', 'read', [uid, ['login']]
|
||||
)
|
||||
|
||||
# 3. Check 2FA is required
|
||||
self.start_tour('/', 'totp_login_enabled', login=None)
|
||||
with self.assertLogs("odoo.addons.auth_totp.models.res_users", "WARNING") as cm:
|
||||
self.start_tour('/', 'totp_login_enabled', login=None)
|
||||
|
||||
self.assertEqual(len(cm.output), 1)
|
||||
self.assertIn("2FA check: REUSE", cm.output[0])
|
||||
|
||||
# 4. Check 2FA is not requested on saved device and disable it
|
||||
self.start_tour('/', 'totp_login_device', login=None)
|
||||
|
|
@ -78,23 +110,22 @@ class TestTOTP(TestTOTPCommon, HttpCaseWithUserDemo):
|
|||
self.start_tour('/', 'totp_login_disabled', login=None)
|
||||
|
||||
# 6. Check that rpc is now re-allowed
|
||||
uid = self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {})
|
||||
self.assertEqual(uid, self.user_demo.id)
|
||||
uid = self.xmlrpc_common.authenticate(get_db_name(), 'test_user', 'test_user', {})
|
||||
self.assertEqual(uid, self.user_test.id)
|
||||
[r] = self.xmlrpc_object.execute_kw(
|
||||
get_db_name(), uid, 'demo',
|
||||
get_db_name(), uid, 'test_user',
|
||||
'res.users', 'read', [uid, ['login']]
|
||||
)
|
||||
self.assertEqual(r['login'], 'demo')
|
||||
|
||||
self.assertEqual(r['login'], 'test_user')
|
||||
|
||||
def test_totp_administration(self):
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
self.start_tour('/web', 'totp_tour_setup', login='test_user')
|
||||
# If not enabled (like in demo data), landing on res.config will try
|
||||
# to disable module_sale_quotation_builder and raise an issue
|
||||
group_order_template = self.env.ref('sale_management.group_sale_order_template', raise_if_not_found=False)
|
||||
if group_order_template:
|
||||
self.env.ref('base.group_user').write({"implied_ids": [(4, group_order_template.id)]})
|
||||
self.start_tour('/web', 'totp_admin_disables', login='admin')
|
||||
self.start_tour('/odoo', 'totp_admin_disables', login='admin')
|
||||
self.start_tour('/', 'totp_login_disabled', login=None)
|
||||
|
||||
@mute_logger('odoo.http')
|
||||
|
|
@ -103,7 +134,7 @@ class TestTOTP(TestTOTPCommon, HttpCaseWithUserDemo):
|
|||
Ensure we don't leak the session info from an half-logged-in
|
||||
user.
|
||||
"""
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
self.start_tour('/odoo', 'totp_tour_setup', login='test_user')
|
||||
self.url_open('/web/session/logout')
|
||||
|
||||
headers = {
|
||||
|
|
@ -116,9 +147,8 @@ class TestTOTP(TestTOTPCommon, HttpCaseWithUserDemo):
|
|||
"id": 0,
|
||||
"params": {
|
||||
"db": get_db_name(),
|
||||
"login": "demo",
|
||||
"password": "demo",
|
||||
"context": {},
|
||||
"login": "test_user",
|
||||
"password": "test_user",
|
||||
},
|
||||
}
|
||||
response = self.url_open("/web/session/authenticate", data=json.dumps(payload), headers=headers)
|
||||
|
|
|
|||
|
|
@ -18,47 +18,34 @@
|
|||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[@name='preferences']" position="after">
|
||||
<page string="Account Security" name="security" attrs="{'invisible': [('id', '=', False)]}">
|
||||
<xpath expr="//div[@name='auth']" position="after">
|
||||
<div name="auth_2fa" class="d-flex mt-3">
|
||||
<div class="col-7 col-sm-6 col-lg-3 d-flex flex-column">
|
||||
<label for="totp_enabled" string="Two-factor Authentication" class="o_form_label"/>
|
||||
<span class="text-muted">
|
||||
Recommended for extra security.
|
||||
</span>
|
||||
</div>
|
||||
<field name="totp_enabled" invisible="1"/>
|
||||
<!-- For own user, allow to activate the two-factor Authentication -->
|
||||
<div>
|
||||
<div class="o_horizontal_separator d-flex align-items-center mt-2 mb-4 text-uppercase fw-bolder small">Two-factor Authentication
|
||||
<div attrs="{'invisible': [('totp_enabled', '!=', False)]}">
|
||||
<button attrs="{'invisible': "[('id', '=', uid)]"}" name="action_totp_enable_wizard"
|
||||
disabled="1" type="object" class="fa fa-toggle-off o_auth_2fa_btn disabled" aria-label="Enable 2FA"></button>
|
||||
<button attrs="{'invisible': "[('id', '!=', uid)]"}" name="action_totp_enable_wizard"
|
||||
type="object" class="fa fa-toggle-off o_auth_2fa_btn disabled pe-auto" aria-label="Enable 2FA"></button>
|
||||
</div>
|
||||
<button attrs="{'invisible': [('totp_enabled', '=', False)]}" name="action_totp_disable" type="object"
|
||||
class="fa fa-toggle-on o_auth_2fa_btn text-primary enabled" aria-label="Disable 2FA"></button>
|
||||
</div>
|
||||
<span attrs="{'invisible': [('totp_enabled', '!=', False)]}" class="text-muted">
|
||||
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.
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/auth/2fa.html" title="Learn More" target="_blank">
|
||||
<i title="Documentation" class="fa fa-fw o_button_icon fa-info-circle"></i>
|
||||
Learn More
|
||||
</a>
|
||||
</span>
|
||||
<span attrs="{'invisible': [('totp_enabled', '=', False)]}" class="text-muted">This account is protected!</span>
|
||||
</div>
|
||||
<group name="auth_devices" string="Trusted Devices" attrs="{'invisible': [('totp_trusted_device_ids', '=', [])]}">
|
||||
<div colspan="2">
|
||||
<field name="totp_trusted_device_ids" nolabel="1" colspan="4" readonly="1">
|
||||
<tree create="false" delete="false">
|
||||
<field name="name" string="Device"/>
|
||||
<field name="create_date" string="Added On"/>
|
||||
<button type="object" name="remove"
|
||||
title="Revoke" icon="fa-trash"/>
|
||||
</tree>
|
||||
</field>
|
||||
<button name="revoke_all_devices" string="Revoke All" type="object" class="btn btn-secondary"
|
||||
confirm="Are you sure? The user may be asked to enter two-factor codes again on those devices"/>
|
||||
</div>
|
||||
</group>
|
||||
</page>
|
||||
<button invisible="totp_enabled or id != uid" name="action_totp_enable_wizard"
|
||||
type="object" class="btn btn-secondary h-100 my-auto" string="Enable 2FA"/>
|
||||
<div invisible="totp_enabled or id == uid" name="div_action_totp_enable_wizard" class="h-100 d-flex flex-wrap align-items-center my-auto">
|
||||
<i class="fa fa-remove text-danger"/>
|
||||
<span class="fw-bold ms-1">
|
||||
Disabled
|
||||
</span>
|
||||
</div>
|
||||
<!-- Admin must be able to deactivate the 2FA, if the user is no longer able to use it. -->
|
||||
<div invisible="not totp_enabled" class="h-100 d-flex flex-wrap align-items-center my-auto">
|
||||
<i class="fa fa-check text-success"/>
|
||||
<span class="fw-bold ms-1 me-2">
|
||||
Enabled
|
||||
</span>
|
||||
<button name="action_totp_disable" type="object" class="btn btn-secondary h-100">
|
||||
Disable
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
|
@ -68,41 +55,28 @@
|
|||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form_simple_modif"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="auth" position="after">
|
||||
<field name="totp_enabled" invisible="1"/>
|
||||
<div>
|
||||
<div class="o_horizontal_separator mt-2 mb-4 text-uppercase fw-bolder small">Two-factor Authentication
|
||||
<button attrs="{'invisible': [('totp_enabled', '!=', False)]}" name="action_totp_enable_wizard"
|
||||
type="object" class="fa fa-toggle-off o_auth_2fa_btn" aria-label="Enable 2FA"/>
|
||||
<button attrs="{'invisible': [('totp_enabled', '=', False)]}" name="action_totp_disable"
|
||||
type="object" class="fa fa-toggle-on o_auth_2fa_btn text-primary" aria-label="Disable 2FA"/>
|
||||
<xpath expr="//div[@name='auth']" position="after">
|
||||
<div class="d-flex mt-3">
|
||||
<div class="col-7 col-sm-6 col-lg-3 d-flex flex-column">
|
||||
<label for="totp_enabled" string="Two-factor Authentication" class="o_form_label"/>
|
||||
<span class="text-muted">
|
||||
Recommended for extra security.
|
||||
</span>
|
||||
</div>
|
||||
<field name="totp_enabled" invisible="1"/>
|
||||
<button invisible="totp_enabled" name="action_totp_enable_wizard"
|
||||
type="object" class="btn btn-secondary h-100 my-auto" string="Enable 2FA"/>
|
||||
<div invisible="not totp_enabled" class="h-100 d-flex flex-wrap align-items-center my-auto">
|
||||
<i class="fa fa-check text-success"/>
|
||||
<span class="fw-bold ms-1 me-2">
|
||||
Enabled
|
||||
</span>
|
||||
<button name="action_totp_disable" type="object" class="btn btn-secondary h-100">
|
||||
Disable
|
||||
</button>
|
||||
</div>
|
||||
<span attrs="{'invisible': [('totp_enabled', '=', False)]}" class="text-muted">Your account is protected!</span>
|
||||
<span attrs="{'invisible': [('totp_enabled', '!=', False)]}" class="text-muted">
|
||||
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.
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/auth/2fa.html" title="Learn More" target="_blank">
|
||||
<i title="Documentation" class="fa fa-fw o_button_icon fa-info-circle"></i>
|
||||
Learn More
|
||||
</a>
|
||||
</span>
|
||||
<group name="auth_devices" string="Trusted Devices" attrs="{'invisible': [('totp_trusted_device_ids', '=', [])]}">
|
||||
<div colspan="2">
|
||||
<field name="totp_trusted_device_ids" nolabel="1" colspan="4" readonly="1">
|
||||
<tree create="false" delete="false">
|
||||
<field name="name" string="Device"/>
|
||||
<field name="create_date" string="Added On"/>
|
||||
<button type="object" name="remove"
|
||||
title="Revoke" icon="fa-trash"/>
|
||||
</tree>
|
||||
</field>
|
||||
<button name="revoke_all_devices" string="Revoke All" type="object" class="btn btn-secondary"
|
||||
confirm="Are you sure? You may be asked to enter two-factor codes again on those devices"/>
|
||||
</div>
|
||||
</group>
|
||||
</div>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<div class="mb-2 mt-2 text-muted">
|
||||
To login, enter below the six-digit authentication code provided by your Authenticator app.
|
||||
<br/>
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/auth/2fa.html"
|
||||
<a href="https://www.odoo.com/documentation/latest/applications/general/auth/2fa.html"
|
||||
title="Learn More" target="_blank">Learn More</a>
|
||||
</div>
|
||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ from odoo.addons.auth_totp.models.totp import ALGORITHM, DIGITS, TIMESTEP
|
|||
|
||||
compress = functools.partial(re.sub, r'\s', '')
|
||||
|
||||
class TOTPWizard(models.TransientModel):
|
||||
|
||||
class Auth_TotpWizard(models.TransientModel):
|
||||
_name = 'auth_totp.wizard'
|
||||
_description = "2-Factor Setup Wizard"
|
||||
|
||||
|
|
@ -28,7 +29,7 @@ class TOTPWizard(models.TransientModel):
|
|||
attachment=False, store=True, readonly=True,
|
||||
compute='_compute_qrcode',
|
||||
)
|
||||
code = fields.Char(string="Verification Code", size=7)
|
||||
code = fields.Char(string="Verification Code", size=7, store=False)
|
||||
|
||||
@api.depends('user_id.login', 'user_id.company_id.display_name', 'secret')
|
||||
def _compute_qrcode(self):
|
||||
|
|
@ -57,7 +58,7 @@ class TOTPWizard(models.TransientModel):
|
|||
@check_identity
|
||||
def enable(self):
|
||||
try:
|
||||
c = int(compress(self.code))
|
||||
c = int(compress(self.env.context.get('code', '')))
|
||||
except ValueError:
|
||||
raise UserError(_("The verification code should only contain numbers"))
|
||||
if self.user_id._totp_try_setting(self.secret, c):
|
||||
|
|
@ -72,9 +73,3 @@ class TOTPWizard(models.TransientModel):
|
|||
}
|
||||
}
|
||||
raise UserError(_('Verification failed, please double-check the 6-digit code'))
|
||||
|
||||
def create(self, vals_list):
|
||||
rule = self.env.ref('auth_totp.rule_auth_totp_wizard', raise_if_not_found=False)
|
||||
if rule and rule.sudo().groups:
|
||||
rule.sudo().groups = False
|
||||
return super().create(vals_list)
|
||||
|
|
|
|||
|
|
@ -6,33 +6,13 @@
|
|||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<sheet>
|
||||
<div class="o_auth_totp_enable_2FA container">
|
||||
<div class="o_auth_totp_enable_2FA text-center ps-0">
|
||||
<div class="mb-3 w-100">
|
||||
<h3 class="fw-bold">Authenticator App Setup</h3>
|
||||
<ul>
|
||||
<div class="d-md-none d-block">
|
||||
<li>
|
||||
<field class="text-wrap" name="url" widget="url" options="{'website_path': True}"
|
||||
text="Click on this link to open your authenticator app"/></li>
|
||||
</div>
|
||||
<li>
|
||||
<div class="d-flex align-items-center flex-wrap">
|
||||
<span class="d-md-none d-block">Or install an authenticator app</span>
|
||||
<span class="d-none d-md-block">Install an authenticator app on your mobile device</span>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<span class="text-muted">Popular ones include Authy, Google Authenticator or the Microsoft Authenticator.</span>
|
||||
<li>Look for an "Add an account" button</li>
|
||||
<li>
|
||||
<span class="d-none d-md-block">When requested to do so, scan the barcode below</span>
|
||||
<span class="d-block d-md-none">When requested to do so, copy the key below</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- Desktop version -->
|
||||
<div class="text-center d-none d-md-block">
|
||||
<field name="qrcode" readonly="True" widget="image" options="{'no_reload': true }" />
|
||||
<h3 class="fw-bold d-none d-md-block">Scan this barcode in your Authenticator app</h3>
|
||||
<div class="d-none d-md-block">
|
||||
<field name="qrcode" readonly="True" widget="image" options="{'reload': false }"/>
|
||||
|
||||
<h3 class="fw-bold"><a data-bs-toggle="collapse"
|
||||
href="#collapseTotpSecret" role="button" aria-expanded="false"
|
||||
|
|
@ -43,24 +23,20 @@
|
|||
</div>
|
||||
|
||||
<!-- Mobile Version -->
|
||||
<div class="text-center d-block d-md-none">
|
||||
<h3 class="fw-bold d-block d-md-none">Add this key in your Authenticator app</h3>
|
||||
<div class="d-block d-md-none">
|
||||
<field name="secret" widget="CopyClipboardChar" readonly="1" class="mb-3 ps-3"/>
|
||||
</div>
|
||||
|
||||
<h3 class="fw-bold">Enter your six-digit code below</h3>
|
||||
<div class="mt-2">
|
||||
<label for="code" class="px-0">Verification Code</label>
|
||||
<div class="d-flex align-items-center">
|
||||
<field required="True" name="code" autocomplete="off" class="o_field_highlight px-0 me-2" placeholder="e.g. 123456"/>
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="fw-bold">Write the code given by your app</h3>
|
||||
<field required="True" name="code" autocomplete="off" class="o_field_highlight w-50 w-sm-25" placeholder="Verification code"/>
|
||||
</div>
|
||||
</div>
|
||||
</sheet>
|
||||
<footer>
|
||||
<button type="object" name="enable" class="btn btn-primary"
|
||||
string="Activate" data-hotkey="q"/>
|
||||
<button string="Cancel" special="cancel" data-hotkey="z"/>
|
||||
<button type="object" name="enable" class="btn btn-primary" context="{'code': code}"
|
||||
string="Enable Two-Factor Authentication" data-hotkey="q"/>
|
||||
<button string="Discard" special="cancel" data-hotkey="x"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-auth_totp"
|
||||
version = "16.0.0"
|
||||
description = "Two-Factor Authentication (TOTP) - Odoo addon"
|
||||
description = "Two-Factor Authentication (TOTP) -
|
||||
Odoo addon
|
||||
"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-web>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-web>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -16,7 +18,7 @@ classifiers = [
|
|||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue