mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-18 04:11:58 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
57
odoo-bringout-oca-ocb-auth_totp/README.md
Normal file
57
odoo-bringout-oca-ocb-auth_totp/README.md
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# Two-Factor Authentication (TOTP)
|
||||
|
||||
|
||||
Two-Factor Authentication (TOTP)
|
||||
================================
|
||||
Allows users to configure two-factor authentication on their user account
|
||||
for extra security, using time-based one-time passwords (TOTP).
|
||||
|
||||
Once enabled, the user will need to enter a 6-digit code as provided
|
||||
by their authenticator app before being granted access to the system.
|
||||
All popular authenticator apps are supported.
|
||||
|
||||
Note: logically, two-factor prevents password-based RPC access for users
|
||||
where it is enabled. In order to be able to execute RPC scripts, the user
|
||||
can setup API keys to replace their main password.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
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`.
|
||||
|
||||
## 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
|
||||
4
odoo-bringout-oca-ocb-auth_totp/auth_totp/__init__.py
Normal file
4
odoo-bringout-oca-ocb-auth_totp/auth_totp/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import controllers
|
||||
from . import models
|
||||
from . import wizard
|
||||
37
odoo-bringout-oca-ocb-auth_totp/auth_totp/__manifest__.py
Normal file
37
odoo-bringout-oca-ocb-auth_totp/auth_totp/__manifest__.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
'name': 'Two-Factor Authentication (TOTP)',
|
||||
'description': """
|
||||
Two-Factor Authentication (TOTP)
|
||||
================================
|
||||
Allows users to configure two-factor authentication on their user account
|
||||
for extra security, using time-based one-time passwords (TOTP).
|
||||
|
||||
Once enabled, the user will need to enter a 6-digit code as provided
|
||||
by their authenticator app before being granted access to the system.
|
||||
All popular authenticator apps are supported.
|
||||
|
||||
Note: logically, two-factor prevents password-based RPC access for users
|
||||
where it is enabled. In order to be able to execute RPC scripts, the user
|
||||
can setup API keys to replace their main password.
|
||||
""",
|
||||
'depends': ['web'],
|
||||
'category': 'Extra Tools',
|
||||
'auto_install': True,
|
||||
'data': [
|
||||
'security/security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'data/ir_action_data.xml',
|
||||
'views/res_users_views.xml',
|
||||
'views/templates.xml',
|
||||
'wizard/auth_totp_wizard_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_tests': [
|
||||
'auth_totp/static/tests/**/*',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'auth_totp/static/src/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import home
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,81 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
|
||||
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
|
||||
|
||||
|
||||
class Home(web_home.Home):
|
||||
@http.route(
|
||||
'/web/login/totp',
|
||||
type='http', auth='public', methods=['GET', 'POST'], sitemap=False,
|
||||
website=True, multilang=False # website breaks the login layout...
|
||||
)
|
||||
def web_totp(self, redirect=None, **kwargs):
|
||||
if request.session.uid:
|
||||
return request.redirect(self._login_redirect(request.session.uid, redirect=redirect))
|
||||
|
||||
if not request.session.pre_uid:
|
||||
return request.redirect('/web/login')
|
||||
|
||||
error = None
|
||||
|
||||
user = request.env['res.users'].browse(request.session.pre_uid)
|
||||
if user and request.httprequest.method == 'GET':
|
||||
cookies = request.httprequest.cookies
|
||||
key = cookies.get(TRUSTED_DEVICE_COOKIE)
|
||||
if key:
|
||||
user_match = request.env['auth_totp.device']._check_credentials_for_uid(
|
||||
scope="browser", key=key, uid=user.id)
|
||||
if user_match:
|
||||
request.session.finalize(request.env)
|
||||
request.update_env(user=request.session.uid)
|
||||
request.update_context(**request.session.context)
|
||||
return request.redirect(self._login_redirect(request.session.uid, redirect=redirect))
|
||||
|
||||
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'])))
|
||||
except AccessDenied as e:
|
||||
error = str(e)
|
||||
except ValueError:
|
||||
error = _("Invalid authentication code format.")
|
||||
else:
|
||||
request.session.finalize(request.env)
|
||||
request.update_env(user=request.session.uid)
|
||||
request.update_context(**request.session.context)
|
||||
response = request.redirect(self._login_redirect(request.session.uid, redirect=redirect))
|
||||
if kwargs.get('remember'):
|
||||
name = _("%(browser)s on %(platform)s",
|
||||
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)
|
||||
response.set_cookie(
|
||||
key=TRUSTED_DEVICE_COOKIE,
|
||||
value=key,
|
||||
max_age=TRUSTED_DEVICE_AGE,
|
||||
httponly=True,
|
||||
samesite='Lax'
|
||||
)
|
||||
# Crapy workaround for unupdatable Odoo Mobile App iOS (Thanks Apple :@)
|
||||
request.session.touch()
|
||||
return response
|
||||
|
||||
# Crapy workaround for unupdatable Odoo Mobile App iOS (Thanks Apple :@)
|
||||
request.session.touch()
|
||||
return request.render('auth_totp.auth_totp_form', {
|
||||
'user': user,
|
||||
'error': error,
|
||||
'redirect': redirect,
|
||||
})
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Action called from the contextual menu -->
|
||||
<record model="ir.actions.server" id="action_disable_totp">
|
||||
<field name="name">Disable two-factor authentication</field>
|
||||
<field name="model_id" ref="base.model_res_users"/>
|
||||
<field name="binding_model_id" ref="base.model_res_users"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
action = records.action_totp_disable()
|
||||
</field>
|
||||
<field name="groups_id" eval="[(4, ref('base.group_erp_manager'))]"/>
|
||||
</record>
|
||||
</odoo>
|
||||
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/af.po
Normal file
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/af.po
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
# 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 ""
|
||||
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/am.po
Normal file
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/am.po
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
# 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for 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
|
||||
#: 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 ""
|
||||
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ar.po
Normal file
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ar.po
Normal file
|
|
@ -0,0 +1,449 @@
|
|||
# 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
|
||||
#
|
||||
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: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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=\"التوثيقات \" 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 "تفعيل"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "مسار 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 "المُعرف"
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. 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 "كلمة سر مؤقتة لمرة واحدة "
|
||||
|
||||
#. 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، أو مصادقة 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. "
|
||||
|
||||
#. 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 ""
|
||||
"فشلت عملية التصديق، الرجاء التحقق مرة أخرى من الكود المكون من ستة أرقام "
|
||||
|
||||
#. 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 "
|
||||
416
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/auth_totp.pot
Normal file
416
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/auth_totp.pot
Normal file
|
|
@ -0,0 +1,416 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
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: 2025-02-10 08:26+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 ""
|
||||
422
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/az.po
Normal file
422
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/az.po
Normal file
|
|
@ -0,0 +1,422 @@
|
|||
# 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
|
||||
#
|
||||
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: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "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"
|
||||
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 "Ləğv edin"
|
||||
|
||||
#. 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 "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Yaradılma Tarixi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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 ""
|
||||
|
||||
#. 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 "Ekran Adı"
|
||||
|
||||
#. 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 "HTTP Marşrutizasiyası"
|
||||
|
||||
#. 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 "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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_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_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"
|
||||
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"
|
||||
msgstr "Əhatə dairəsi"
|
||||
|
||||
#. 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 "İ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"
|
||||
msgstr "İki faktorlu doğrulama"
|
||||
|
||||
#. 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 "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 "İ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
|
||||
#. 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 ""
|
||||
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/be.po
Normal file
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/be.po
Normal file
|
|
@ -0,0 +1,448 @@
|
|||
# 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"
|
||||
435
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/bg.po
Normal file
435
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/bg.po
Normal file
|
|
@ -0,0 +1,435 @@
|
|||
# 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
|
||||
#
|
||||
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: Veselina Slavkova, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
"Двуфакторното заверяване (\"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 ""
|
||||
|
||||
#. 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 ""
|
||||
416
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/bs.po
Normal file
416
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/bs.po
Normal file
|
|
@ -0,0 +1,416 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
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: 2025-02-10 08:26+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 setup čarobnjak"
|
||||
|
||||
#. 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 "Dvofaktorska 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 ""
|
||||
|
||||
#. 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 "Sigurnost 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 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 ""
|
||||
|
||||
#. 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 "Kod za autentifikaciju"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
msgid "Authentication Device"
|
||||
msgstr "Uređaj za autentifikaciju"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Authenticator App Setup"
|
||||
msgstr "Podešavanje autentifikatorske aplikacije"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cannot scan it?"
|
||||
msgstr "Ne možete 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 autentifikatorsku aplikaciju"
|
||||
|
||||
#. 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ći dvofaktorsku 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 šestociferni kod ispod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmjeravanje"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "Nevažeći format koda za autentifikaciju."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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 "Tražite dugme \"Dodaj račun\""
|
||||
|
||||
#. 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 "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 "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 "Opseg"
|
||||
|
||||
#. 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 "Verifikacijski kod treba sadržavati 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 ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Totp tajna"
|
||||
|
||||
#. 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 "Aktivacija dvofaktorske autentifikacije"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "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ć 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 se može omogućiti samo za vas"
|
||||
|
||||
#. 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 autentifikacija onemogućena za sljedeće korisnik(e): %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 "Verifikacijski 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 neuspješna, molimo dvaput provjerite 6-ciferni 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"
|
||||
454
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ca.po
Normal file
454
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ca.po
Normal file
|
|
@ -0,0 +1,454 @@
|
|||
# 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
|
||||
#
|
||||
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: Óscar Fonseca <tecnico@pyming.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s a %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "Authentication Code"
|
||||
msgstr "Codi d'autenticació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data de creació"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Nom a mostrar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "No tornar a preguntar en aquest 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 "Enable 2FA"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutament HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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 "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Àmbit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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"
|
||||
" <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"
|
||||
" <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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Autenticació en dos passos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autenticació de dos passos inhabilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "e.g. 123456"
|
||||
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/cs.po
Normal file
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/cs.po
Normal file
|
|
@ -0,0 +1,449 @@
|
|||
# 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
|
||||
#
|
||||
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: Stanislav Kurinec, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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
|
||||
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_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\">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"
|
||||
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"
|
||||
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
|
||||
msgid "Authentication Code"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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í"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Datum vytvoření"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Zobrazované jméno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Na tomto zařízení se již neptat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Rozsah"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Tajný"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "tajemství 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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Dvoufaktorové ověřování"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Dvoufaktorové ověřování vypnuto"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "např. 123456"
|
||||
440
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/da.po
Normal file
440
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/da.po
Normal file
|
|
@ -0,0 +1,440 @@
|
|||
# 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
|
||||
#
|
||||
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: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 "Autentificeringskode"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Oprettelsesdato"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Deaktiver to-trins autentificering"
|
||||
|
||||
#. 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 "Vis navn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Spørg ikke igen på denne 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 "Enable 2FA"
|
||||
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"
|
||||
|
||||
#. 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 "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."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Anvendelsesområde"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Hemmelighed"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "To-faktor autentificering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "To-trins autentificering 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Adresse"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "f.eks. 123456"
|
||||
452
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/de.po
Normal file
452
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/de.po
Normal file
|
|
@ -0,0 +1,452 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 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: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Authentifizierungscode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Erstellungsdatum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Anzeigename"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Auf diesem Gerät nicht noch einmal nachfragen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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_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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Gültigkeitsbereich"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Geheimnis"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Zwei-Faktor-Authentifizierung deaktiviert"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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: "
|
||||
"%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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "z. B. 123456"
|
||||
451
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/es.po
Normal file
451
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/es.po
Normal file
|
|
@ -0,0 +1,451 @@
|
|||
# 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
|
||||
#
|
||||
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: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s en %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Código de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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?"
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Fecha de creación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Nombre mostrado"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "No volver a preguntar en este 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Alcance"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secreto"
|
||||
|
||||
#. 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"
|
||||
" <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"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autenticación de dos factores deshabilitada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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 "
|
||||
"usuarios: %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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "p. ej. 123456"
|
||||
450
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/es_MX.po
Normal file
450
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,450 @@
|
|||
# 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
|
||||
#
|
||||
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: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 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 en %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Código de autenticación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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?"
|
||||
|
||||
#. 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 "
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Fecha de creación"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Nombre en pantalla"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Recordar este 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Alcance"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#. 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"
|
||||
" <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"
|
||||
"<br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Se deshabilitó la autenticación de dos factores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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 "
|
||||
"usuarios: %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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "Por ejemplo, 123456"
|
||||
455
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/et.po
Normal file
455
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/et.po
Normal file
|
|
@ -0,0 +1,455 @@
|
|||
# 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
|
||||
#
|
||||
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: Stevin Lilla, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s selles %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
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
|
||||
msgid "Authentication Code"
|
||||
msgstr "Autentimiskood"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Näidatav nimi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Ära küsi rohkem selles seades"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Maht"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Saladus"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Kahe-etapiline tuvastamine"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Kahe-etapiline tuvastamine ei ole lubatud"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "e.g. 123456"
|
||||
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fa.po
Normal file
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fa.po
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
# 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
|
||||
#
|
||||
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: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
" 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 "فعال"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "شناسه"
|
||||
|
||||
#. 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 "کد 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 ""
|
||||
"برای ورود، کد اعتبارسنجی شش رقمی ارائه شده در اپلیکیشن اعتبارسنجی خود را "
|
||||
"وارد کنید. <br/>"
|
||||
|
||||
#. 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 ""
|
||||
"اعتبارسنجی دو عاملی (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"
|
||||
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 "آدرس وب"
|
||||
|
||||
#. 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"
|
||||
456
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fi.po
Normal file
456
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fi.po
Normal file
|
|
@ -0,0 +1,456 @@
|
|||
# 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
|
||||
#
|
||||
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: Jesse Järvi <me@jessejarvi.net>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
msgstr "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 ""
|
||||
"Oletko varma? Käyttäjä saattaa joutua syöttämään vahvistuskoodin uudelleen "
|
||||
"laitteessaan"
|
||||
|
||||
#. 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 ""
|
||||
"Oletko varma? Saatat joutua syöttämään vahvistuskoodin uudelleen "
|
||||
"laitteessasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
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"
|
||||
|
||||
#. 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?"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Luontipäivä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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ä"
|
||||
|
||||
#. 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: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 "Näyttönimi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Älä kysy uudestaan tällä laitteella"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-reititys"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "Virheellinen autentikointikoodi."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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_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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Laajuus"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Salausavain"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 ""
|
||||
"Kirjautuaksesi sisään, syötä alle kuusinumeroinen vahvistuskoodi vahvistussovelluksestasi.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "TOTP-salausavain"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen pois käytöstä"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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ä: "
|
||||
"%s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Verkko-osoite"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "esim. 123456"
|
||||
451
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fr.po
Normal file
451
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/fr.po
Normal file
|
|
@ -0,0 +1,451 @@
|
|||
# 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
|
||||
#
|
||||
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: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s sur %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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é"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Code d'identification"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Date de création"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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: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 "Nom d'affichage"
|
||||
|
||||
#. 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 plus demander sur cet 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 "Enable 2FA"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Routage HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Portée"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Authentification à deux facteurs"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Authentification à deux facteurs désactivée"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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) "
|
||||
"suivant(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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "par ex. 123456"
|
||||
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/gu.po
Normal file
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/gu.po
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
# 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 ""
|
||||
426
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/he.po
Normal file
426
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/he.po
Normal file
|
|
@ -0,0 +1,426 @@
|
|||
# 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
|
||||
#
|
||||
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: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 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 ""
|
||||
|
||||
#. 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 "ניתוב 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 "מזהה"
|
||||
|
||||
#. 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 ""
|
||||
423
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hi.po
Normal file
423
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hi.po
Normal file
|
|
@ -0,0 +1,423 @@
|
|||
# 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
|
||||
#
|
||||
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: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 ""
|
||||
427
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hr.po
Normal file
427
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hr.po
Normal file
|
|
@ -0,0 +1,427 @@
|
|||
# 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
|
||||
#
|
||||
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: Luka Carević <luka@uvid.hr>, 2025\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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"
|
||||
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 "Odustani"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "HTTP usmjeravanje"
|
||||
|
||||
#. 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 "Zadnja promjena"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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 ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Opseg"
|
||||
|
||||
#. 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 "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"
|
||||
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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
441
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hu.po
Normal file
441
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hu.po
Normal file
|
|
@ -0,0 +1,441 @@
|
|||
# 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
|
||||
#
|
||||
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: Tamás Dombos, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s %(platform)splatformon"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 "Autentikációs 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "Megjelenített név"
|
||||
|
||||
#. 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 kérje többet ezen az eszközö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 "Enable 2FA"
|
||||
msgstr "Kétfaktoros hitelesí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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP irányítás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__id
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
|
||||
#. 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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Hatáskör"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Titok"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"A belépéshez adja meg az Autentikátor alkalmazás által adott 6-jegyű "
|
||||
"belépési kódot."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Kétlépcsős azonosítás"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Kétlépcsős azonosítás kikapcsolva"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__url
|
||||
msgid "Url"
|
||||
msgstr "Webcím"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "pl.: 123456"
|
||||
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hy.po
Normal file
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/hy.po
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
# 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"
|
||||
"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"
|
||||
"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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for 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
|
||||
#: 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 ""
|
||||
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/id.po
Normal file
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/id.po
Normal file
|
|
@ -0,0 +1,448 @@
|
|||
# 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
|
||||
#
|
||||
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: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s pada %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kode Autentikasi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Tanggal Pembuatan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Lingkup"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Rahasia"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Otentikasi dua faktor"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autentikasi dua-faktor Dibatalkan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "contoh 123456"
|
||||
443
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/is.po
Normal file
443
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/is.po
Normal file
|
|
@ -0,0 +1,443 @@
|
|||
# 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"
|
||||
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/it.po
Normal file
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/it.po
Normal file
|
|
@ -0,0 +1,449 @@
|
|||
# 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
|
||||
#
|
||||
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: Sergio Zanchetta <primes2h@gmail.com>, 2024\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s su %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Codice di autenticazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Nome visualizzato"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Non chiedere di nuovo su questo 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Instradamento HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Ambito"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Chiave privata"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Autenticazione a due fattori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autenticazione a due fattori disabilitata"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "es. 123456"
|
||||
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ja.po
Normal file
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ja.po
Normal file
|
|
@ -0,0 +1,445 @@
|
|||
# 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
|
||||
#
|
||||
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: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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要素設定ウィザード"
|
||||
|
||||
#. 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
|
||||
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 "本当によろしいですか?これらのデバイスで再度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要素コードの入力を求められる場合があります"
|
||||
|
||||
#. 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 "2要素認証を無効化"
|
||||
|
||||
#. 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 "下欄に6桁のコードを入力してください"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTPルーティング"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "アップルストアにて"
|
||||
|
||||
#. 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 ""
|
||||
"ログインするには、認証アプリが提供する 6 桁の認証コードを以下に入力して下さい。\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 "2要素認証の有効化"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "2要素認証"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "2要素認証無効"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
423
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/km.po
Normal file
423
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/km.po
Normal file
|
|
@ -0,0 +1,423 @@
|
|||
# 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
|
||||
#
|
||||
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: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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 "អត្តសញ្ញាណ"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ko.po
Normal file
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ko.po
Normal file
|
|
@ -0,0 +1,445 @@
|
|||
# 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
|
||||
#
|
||||
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: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(platform)s의 %(browser)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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 인증 또는 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 "활성화"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "다시 확인하세요. 사용자에게 해당 장치에서 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단계 코드를 다시 입력하라는 메시지가 표시될 수 있습니다."
|
||||
|
||||
#. 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 "아래에 6자리 코드를 입력하세요"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 라우팅"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "애플 앱스토어"
|
||||
|
||||
#. 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 "전부 취소"
|
||||
|
||||
#. 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 ""
|
||||
"로그인하려면 인증앱에서 전송한 6자리 인증 코드를 아래에 입력하십시오..\n"
|
||||
" <br/>"
|
||||
|
||||
#. 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 "2단계 인증 활성화"
|
||||
|
||||
#. 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 ""
|
||||
"이중 인증 (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 인증을 사용합니다."
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
422
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lo.po
Normal file
422
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lo.po
Normal file
|
|
@ -0,0 +1,422 @@
|
|||
# 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 ""
|
||||
435
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lt.po
Normal file
435
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lt.po
Normal file
|
|
@ -0,0 +1,435 @@
|
|||
# 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
|
||||
#
|
||||
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: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
" Sužinoti daugiau"
|
||||
|
||||
#. 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"
|
||||
" 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>"
|
||||
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"
|
||||
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 "Atšaukti"
|
||||
|
||||
#. 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 "Sukūrė"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Sukūrimo data"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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 ""
|
||||
|
||||
#. 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: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 "Rodomas pavadinimas"
|
||||
|
||||
#. 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 "HTTP nukreipimas"
|
||||
|
||||
#. 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 "Paskutinį kartą keista"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Apimtis"
|
||||
|
||||
#. 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 "Dviejų Žingsnių Autentifikacijos Aktyvacija"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Dviejų veiksnių autentifikavimas (two-factor authentication)"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Dviejų Žingsnių Autentifikacija Išjungta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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 ""
|
||||
432
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lv.po
Normal file
432
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/lv.po
Normal file
|
|
@ -0,0 +1,432 @@
|
|||
# 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
|
||||
#
|
||||
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: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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=\"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
|
||||
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_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\">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"
|
||||
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 "Autentifikācijas kods"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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?"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Izveides datums"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Atspējot divfaktoru autentifikāciju"
|
||||
|
||||
#. 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 "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ē"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP maršrutēšana"
|
||||
|
||||
#. 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 "Nederīgs autentifikācijas koda formāts."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Darbības joma"
|
||||
|
||||
#. 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 "Verifikācijas kodam būtu jāsatur tikai skaitļi"
|
||||
|
||||
#. 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 ""
|
||||
"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_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 "Uzticamās ierīces"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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 "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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ml.po
Normal file
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ml.po
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
# 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 ""
|
||||
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/mn.po
Normal file
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/mn.po
Normal file
|
|
@ -0,0 +1,424 @@
|
|||
# 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
|
||||
#
|
||||
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: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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 "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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ms.po
Normal file
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ms.po
Normal file
|
|
@ -0,0 +1,424 @@
|
|||
# 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 ""
|
||||
426
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/nb.po
Normal file
426
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/nb.po
Normal file
|
|
@ -0,0 +1,426 @@
|
|||
# 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
|
||||
#
|
||||
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: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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"
|
||||
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 "Opprettet av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Opprettelsesdato"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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 ""
|
||||
|
||||
#. 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 "Visningsnavn"
|
||||
|
||||
#. 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 "HTTP-ruting"
|
||||
|
||||
#. 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 "Sist endret"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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 "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"
|
||||
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 "Hemmelighet"
|
||||
|
||||
#. 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 "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"
|
||||
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 "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 "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
|
||||
#. 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 ""
|
||||
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/nl.po
Normal file
449
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/nl.po
Normal file
|
|
@ -0,0 +1,449 @@
|
|||
# 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
|
||||
#
|
||||
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: Erwin van der Ploeg <erwin@odooexperts.nl>, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s op %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Authenticatiecode"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Aanmaakdatum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Weergavenaam"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Niet meer vragen op dit 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 "Enable 2FA"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst geupdate 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Bereik"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Geheim"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Twee-factor-authenticatie"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Tweestapsverificatie uitgeschakeld"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "bijv. 123456"
|
||||
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/no.po
Normal file
420
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/no.po
Normal file
|
|
@ -0,0 +1,420 @@
|
|||
# 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 ""
|
||||
460
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pl.po
Normal file
460
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pl.po
Normal file
|
|
@ -0,0 +1,460 @@
|
|||
# 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
|
||||
#
|
||||
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: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 ""
|
||||
"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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kod weryfikacyjny"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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ą"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.actions.server,name:auth_totp.action_disable_totp
|
||||
msgid "Disable two-factor authentication"
|
||||
msgstr "Wyłącz Uwierzytelnianie dwuetapowe"
|
||||
|
||||
#. 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 "Nazwa wyświetlana"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Nie pytaj ponownie na tym urządzeniu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Wytyczanie HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Zakres"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Sekret"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"Aby się zalogować, wprowadź poniżej 6-cyfrowy kod uwierzytelniający dostarczony przez aplikację Authenticator.\n"
|
||||
" <br/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
msgstr "Sekret 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"
|
||||
|
||||
#. 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 "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"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "
|
||||
"użytkownika(ów): %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 "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
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
427
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pt.po
Normal file
427
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pt.po
Normal file
|
|
@ -0,0 +1,427 @@
|
|||
# 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
|
||||
#
|
||||
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: Daniel Reis, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "Segurança da Conta"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Activate"
|
||||
msgstr "Ativar"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 "Cancelar"
|
||||
|
||||
#. 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 "Criado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data de Criação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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 ""
|
||||
|
||||
#. 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 "Nome"
|
||||
|
||||
#. 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 "Rotas 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 "Última Modificação em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Âmbito"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Segredo"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "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 "Utilizador"
|
||||
|
||||
#. 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 ""
|
||||
452
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pt_BR.po
Normal file
452
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,452 @@
|
|||
# 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
|
||||
#
|
||||
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: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 ""
|
||||
"Tem certeza? O usuário pode precisar inserir códigos de dois fator novamente"
|
||||
" nesses 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 ""
|
||||
"Tem certeza? Você pode precisar inserir códigos de dois fatores novamente "
|
||||
"nesses dispositivos"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Código de autenticação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data de Criação"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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 "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 "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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Roteamento HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Escopo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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"
|
||||
" <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_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 "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"
|
||||
|
||||
#. 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 "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."
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_enabled
|
||||
msgid "Two-factor authentication"
|
||||
msgstr "Autenticação dois fatores"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
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 "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
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
454
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ro.po
Normal file
454
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ro.po
Normal file
|
|
@ -0,0 +1,454 @@
|
|||
# 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
|
||||
#
|
||||
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: Claudia Baisan, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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ă"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid ""
|
||||
"Are you sure? You may be asked to enter two-factor codes again on those "
|
||||
"devices"
|
||||
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
|
||||
msgid "Authentication Code"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Data creării"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Nume afișat"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Nu mai intrebați pe acest 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 "Enable 2FA"
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rutare HTTP"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Scope"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_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 "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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Autentificare cu doi factori"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Autentificarea cu doi factori dezactivată"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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 "
|
||||
"utilizatori: %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 "Operator"
|
||||
|
||||
#. 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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "de ex. 123456"
|
||||
450
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ru.po
Normal file
450
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ru.po
Normal file
|
|
@ -0,0 +1,450 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "Включить"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "Настройка приложения 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 "Отмена"
|
||||
|
||||
#. 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 "Идентификатор"
|
||||
|
||||
#. 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 ""
|
||||
"Чтобы войти в систему, введите шестизначный код аутентификации, предоставленный приложением Authenticator.\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"
|
||||
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sk.po
Normal file
424
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sk.po
Normal file
|
|
@ -0,0 +1,424 @@
|
|||
# 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
|
||||
#
|
||||
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: Tomáš Píšek, 2025\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "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"
|
||||
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 "Zrušené"
|
||||
|
||||
#. 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 "Vytvoril"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Dátum vytvorenia"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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 ""
|
||||
|
||||
#. 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 "Zobrazovaný názov"
|
||||
|
||||
#. 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 "HTTP smerovanie"
|
||||
|
||||
#. 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 "Posledná úprava"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Rozsah"
|
||||
|
||||
#. 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 "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"
|
||||
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 "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 "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
|
||||
#. 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 ""
|
||||
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sl.po
Normal file
445
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sl.po
Normal file
|
|
@ -0,0 +1,445 @@
|
|||
# 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
|
||||
#
|
||||
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: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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-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_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 ""
|
||||
"<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
|
||||
msgid "Authentication Code"
|
||||
msgstr "Koda za preverjanje pristnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Datum nastanka"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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: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 "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 sprašuj več v tej napravi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmerjanje"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Obseg"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Skrivnost"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Dvostopenjska avtentikacija"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Two-factor Onemogočeno preverjanje pristnosti"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "npr. 123456"
|
||||
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sq.po
Normal file
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sq.po
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
# 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"
|
||||
"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"
|
||||
"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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for 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
|
||||
#: 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 ""
|
||||
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sr.po
Normal file
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sr.po
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
# 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"
|
||||
456
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sv.po
Normal file
456
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sv.po
Normal file
|
|
@ -0,0 +1,456 @@
|
|||
# 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
|
||||
#
|
||||
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: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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-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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Autentiseringskod"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Skapad datum"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Visningsnamn"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Fråga inte igen på den här enheten"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-rutt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
|
||||
#. 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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Omfattning"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Hemlighet"
|
||||
|
||||
#. 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"
|
||||
" <br/>"
|
||||
msgstr ""
|
||||
"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_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Tvåfaktorsautentisering"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Tvåfaktorsautentisering Inaktiverad"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "t.ex. 123456"
|
||||
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sw.po
Normal file
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/sw.po
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
# 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"
|
||||
"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"
|
||||
"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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for 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
|
||||
#: 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 ""
|
||||
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ta.po
Normal file
407
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/ta.po
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
# 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"
|
||||
"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"
|
||||
"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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: 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
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication already enabled"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication can only be enabled for yourself"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_totp
|
||||
#: code:addons/auth_totp/models/res_users.py:0
|
||||
#, python-format
|
||||
msgid "Two-factor authentication disabled for 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
|
||||
#: 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 ""
|
||||
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/th.po
Normal file
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/th.po
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
# 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
|
||||
#
|
||||
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: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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"
|
||||
|
||||
#. 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
|
||||
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 ""
|
||||
"คุณแน่ใจไหม? ผู้ใช้อาจถูกขอให้ป้อนรหัส 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
|
||||
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 "การตั้งค่าแอป 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 "ยกเลิก"
|
||||
|
||||
#. 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 "ไอดี"
|
||||
|
||||
#. 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 "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 "เพิกถอนทั้งหมด"
|
||||
|
||||
#. 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 ""
|
||||
"ในการเข้าสู่ระบบ ให้ป้อนรหัสการตรวจสอบสิทธิ์หกหลักด้านล่างที่แอป Authenticator ให้มา\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 "อุปกรณ์ที่เชื่อถือได้"
|
||||
|
||||
#. 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 ""
|
||||
"การตรวจสอบสิทธิ์แบบ Two-factor (\"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"
|
||||
457
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/tr.po
Normal file
457
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/tr.po
Normal file
|
|
@ -0,0 +1,457 @@
|
|||
# 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
|
||||
#
|
||||
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: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(browser)s on %(platform)s"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_wizard
|
||||
msgid "2-Factor Setup Wizard"
|
||||
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
|
||||
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_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\">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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Authentication Code"
|
||||
msgstr "Kimlik Doğrulama Kodu"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Oluşturulma Tarihi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Görünüm Adı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Bu cihazda tekrar sorma"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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'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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Yönlendirme"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
msgstr "Kapsam"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__secret
|
||||
msgid "Secret"
|
||||
msgstr "Gizli"
|
||||
|
||||
#. 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"
|
||||
" <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/>"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_res_users__totp_secret
|
||||
msgid "Totp Secret"
|
||||
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"
|
||||
|
||||
#. 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 "İ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"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulama"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "İki faktörlü kimlik doğrulama Devre Dışı"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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ışı "
|
||||
"bırakıldı: %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 "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
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "örn.123456"
|
||||
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/uk.po
Normal file
447
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/uk.po
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
# 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
|
||||
#
|
||||
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: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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 "Верифікація не вдалася, перевірте ще раз шестизначний код"
|
||||
|
||||
#. 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"
|
||||
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/vi.po
Normal file
448
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/vi.po
Normal file
|
|
@ -0,0 +1,448 @@
|
|||
# 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
|
||||
#
|
||||
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: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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ố"
|
||||
|
||||
#. 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
|
||||
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_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\">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"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid "Authentication Code"
|
||||
msgstr "Mã Xác thực"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_auth_totp_device
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: 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_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__create_date
|
||||
msgid "Creation Date"
|
||||
msgstr "Ngày tạo"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__name
|
||||
msgid "Description"
|
||||
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"
|
||||
|
||||
#. 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: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 "Tên Hiển thị"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form
|
||||
msgid "Don't ask again on this device"
|
||||
msgstr "Không hỏi lại trên thiết bị này"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_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 "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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model,name:auth_totp.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Định tuyến 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 "Đị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"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật Lần cuối bởi"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật Lần cuối vào"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.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_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ả"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model:ir.model.fields,field_description:auth_totp.field_auth_totp_device__scope
|
||||
msgid "Scope"
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
" <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"
|
||||
" <br/>"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. 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ố"
|
||||
|
||||
#. 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 "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"
|
||||
msgstr "Xác thực hai yếu tố"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
msgstr "Xác thực hai yếu tố đang tắt"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Enabled"
|
||||
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"
|
||||
|
||||
#. 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 "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"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard
|
||||
msgid "e.g. 123456"
|
||||
msgstr "VD: 123456"
|
||||
444
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/zh_CN.po
Normal file
444
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,444 @@
|
|||
# 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
|
||||
#
|
||||
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: Emily Jia <eji@odoo.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. 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双因素设置向导"
|
||||
|
||||
#. 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、谷歌认证器或微软认证器。</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 "在苹果应用商店"
|
||||
|
||||
#. 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 "全部撤销"
|
||||
|
||||
#. 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 ""
|
||||
"要登录,请在下面输入由Authenticator应用程序提供的六位数认证代码。\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、谷歌认证器或微软认证器。"
|
||||
|
||||
#. 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"
|
||||
msgstr "双重身份验证"
|
||||
|
||||
#. module: auth_totp
|
||||
#: model_terms:ir.ui.view,arch_db:auth_totp.res_users_view_search
|
||||
msgid "Two-factor authentication Disabled"
|
||||
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双重身份验证"
|
||||
|
||||
#. 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"
|
||||
441
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/zh_TW.po
Normal file
441
odoo-bringout-oca-ocb-auth_totp/auth_totp/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,441 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_totp
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
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: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_totp
|
||||
#. odoo-python
|
||||
#: code:addons/auth_totp/controllers/home.py:0
|
||||
#, python-format
|
||||
msgid "%(browser)s on %(platform)s"
|
||||
msgstr "%(platform)s 上的 %(browser)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=\"使用說明\" 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 ""
|
||||
|
||||
#. 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 "你確定嗎?用戶可能會被要求在這些設備上再次輸入雙因子碼"
|
||||
|
||||
#. 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 "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 "全部取消"
|
||||
|
||||
#. 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 ""
|
||||
"如要登入,請在下方輸入由 Authenticator 身份驗證程式提供的 6 位數字驗證碼。\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 ""
|
||||
"雙重要素身份驗證(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"
|
||||
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 "網址"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import auth_totp
|
||||
from . import ir_http
|
||||
from . import res_users
|
||||
from . import totp
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,31 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import api, models
|
||||
from odoo.addons.auth_totp.controllers.home import TRUSTED_DEVICE_AGE
|
||||
|
||||
import logging
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AuthTotpDevice(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"
|
||||
_description = "Authentication Device"
|
||||
_auto = False
|
||||
|
||||
def _check_credentials_for_uid(self, *, scope, key, uid):
|
||||
"""Return True if device key matches given `scope` for user ID `uid`"""
|
||||
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)
|
||||
13
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/ir_http.py
Normal file
13
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/ir_http.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = 'ir.http'
|
||||
|
||||
def session_info(self):
|
||||
info = super().session_info()
|
||||
# because frontend session_info uses this key and is embedded in
|
||||
# the view source
|
||||
info["user_id"] = request.session.uid,
|
||||
return info
|
||||
177
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/res_users.py
Normal file
177
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/res_users.py
Normal file
|
|
@ -0,0 +1,177 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
import functools
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.addons.base.models.res_users import check_identity
|
||||
from odoo.exceptions import AccessDenied, UserError
|
||||
from odoo.http import request
|
||||
from odoo.tools import sql
|
||||
|
||||
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):
|
||||
_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_trusted_device_ids = fields.One2many('auth_totp.device', 'user_id', string="Trusted Devices")
|
||||
|
||||
@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:
|
||||
return r
|
||||
if self.totp_enabled:
|
||||
return 'totp'
|
||||
|
||||
def _mfa_url(self):
|
||||
r = super()._mfa_url()
|
||||
if r is not None:
|
||||
return r
|
||||
if self._mfa_type() == 'totp':
|
||||
return '/web/login/totp'
|
||||
|
||||
@api.depends('totp_secret')
|
||||
def _compute_totp_enabled(self):
|
||||
for r, v in zip(self, self.sudo()):
|
||||
r.totp_enabled = bool(v.totp_secret)
|
||||
|
||||
def _rpc_api_keys_only(self):
|
||||
# 2FA enabled means we can't allow password-based RPC
|
||||
self.ensure_one()
|
||||
return self.totp_enabled or super()._rpc_api_keys_only()
|
||||
|
||||
def _get_session_token_fields(self):
|
||||
return super()._get_session_token_fields() | {'totp_secret'}
|
||||
|
||||
def _totp_check(self, code):
|
||||
sudo = self.sudo()
|
||||
key = base64.b32decode(sudo.totp_secret)
|
||||
match = TOTP(key).match(code)
|
||||
if match is None:
|
||||
_logger.info("2FA check: FAIL for %s %r", self, 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 _totp_try_setting(self, secret, code):
|
||||
if self.totp_enabled or self != self.env.user:
|
||||
_logger.info("2FA enable: REJECT for %s %r", self, self.login)
|
||||
return False
|
||||
|
||||
secret = compress(secret).upper()
|
||||
match = TOTP(base64.b32decode(secret)).match(code)
|
||||
if match is None:
|
||||
_logger.info("2FA enable: REJECT CODE for %s %r", self, self.login)
|
||||
return False
|
||||
|
||||
self.sudo().totp_secret = secret
|
||||
if request:
|
||||
self.env.flush_all()
|
||||
# update session token so the user does not get logged out (cache cleared by change)
|
||||
new_token = self.env.user._compute_session_token(request.session.sid)
|
||||
request.session.session_token = new_token
|
||||
|
||||
_logger.info("2FA enable: SUCCESS for %s %r", self, self.login)
|
||||
return True
|
||||
|
||||
@check_identity
|
||||
def action_totp_disable(self):
|
||||
logins = ', '.join(map(repr, self.mapped('login')))
|
||||
if not (self == self.env.user or self.env.user._is_admin() or self.env.su):
|
||||
_logger.info("2FA disable: REJECT for %s (%s) by uid #%s", self, logins, self.env.user.id)
|
||||
return False
|
||||
|
||||
self.revoke_all_devices()
|
||||
self.sudo().write({'totp_secret': False})
|
||||
|
||||
if request and self == self.env.user:
|
||||
self.env.flush_all()
|
||||
# update session token so the user does not get logged out (cache cleared by change)
|
||||
new_token = self.env.user._compute_session_token(request.session.sid)
|
||||
request.session.session_token = new_token
|
||||
|
||||
_logger.info("2FA disable: SUCCESS for %s (%s) by uid #%s", self, logins, self.env.user.id)
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'type': 'warning',
|
||||
'message': _("Two-factor authentication disabled for the following user(s): %s", ', '.join(self.mapped('name'))),
|
||||
'next': {'type': 'ir.actions.act_window_close'},
|
||||
}
|
||||
}
|
||||
|
||||
@check_identity
|
||||
def action_totp_enable_wizard(self):
|
||||
if self.env.user != self:
|
||||
raise UserError(_("Two-factor authentication can only be enabled for yourself"))
|
||||
|
||||
if self.totp_enabled:
|
||||
raise UserError(_("Two-factor authentication already enabled"))
|
||||
|
||||
secret_bytes_count = TOTP_SECRET_SIZE // 8
|
||||
secret = base64.b32encode(os.urandom(secret_bytes_count)).decode()
|
||||
# format secret in groups of 4 characters for readability
|
||||
secret = ' '.join(map(''.join, zip(*[iter(secret)]*4)))
|
||||
w = self.env['auth_totp.wizard'].create({
|
||||
'user_id': self.id,
|
||||
'secret': secret,
|
||||
})
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'target': 'new',
|
||||
'res_model': 'auth_totp.wizard',
|
||||
'name': _("Two-Factor Authentication Activation"),
|
||||
'res_id': w.id,
|
||||
'views': [(False, 'form')],
|
||||
'context': self.env.context,
|
||||
}
|
||||
|
||||
@check_identity
|
||||
def revoke_all_devices(self):
|
||||
self._revoke_all_devices()
|
||||
|
||||
def _revoke_all_devices(self):
|
||||
self.totp_trusted_device_ids._remove()
|
||||
|
||||
@api.model
|
||||
def change_password(self, old_passwd, new_passwd):
|
||||
self.env.user._revoke_all_devices()
|
||||
return super().change_password(old_passwd, new_passwd)
|
||||
|
||||
def _compute_totp_secret(self):
|
||||
for user in self.filtered('id'):
|
||||
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'):
|
||||
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):
|
||||
value = not value if operator == '!=' else value
|
||||
if value:
|
||||
self.env.cr.execute("SELECT id FROM res_users WHERE totp_secret IS NOT NULL")
|
||||
else:
|
||||
self.env.cr.execute("SELECT id FROM res_users WHERE totp_secret IS NULL OR totp_secret='false'")
|
||||
result = self.env.cr.fetchall()
|
||||
return [('id', 'in', [x[0] for x in result])]
|
||||
56
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/totp.py
Normal file
56
odoo-bringout-oca-ocb-auth_totp/auth_totp/models/totp.py
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hmac
|
||||
import struct
|
||||
import time
|
||||
|
||||
# 160 bits, as recommended by HOTP RFC 4226, section 4, R6.
|
||||
# Google Auth uses 80 bits by default but supports 160.
|
||||
TOTP_SECRET_SIZE = 160
|
||||
|
||||
# The algorithm (and key URI format) allows customising these parameters but
|
||||
# google authenticator doesn't support it
|
||||
# https://github.com/google/google-authenticator/wiki/Key-Uri-Format
|
||||
ALGORITHM = 'sha1'
|
||||
DIGITS = 6
|
||||
TIMESTEP = 30
|
||||
|
||||
class TOTP:
|
||||
def __init__(self, key):
|
||||
self._key = key
|
||||
|
||||
def match(self, code, t=None, window=TIMESTEP, timestep=TIMESTEP):
|
||||
"""
|
||||
:param code: authenticator code to check against this key
|
||||
:param int t: current timestamp (seconds)
|
||||
:param int window: fuzz window to account for slow fingers, network
|
||||
latency, desynchronised clocks, ..., every code
|
||||
valid between t-window an t+window is considered
|
||||
valid
|
||||
"""
|
||||
if t is None:
|
||||
t = time.time()
|
||||
|
||||
low = int((t - window) / timestep)
|
||||
high = int((t + window) / timestep) + 1
|
||||
|
||||
return next((
|
||||
counter for counter in range(low, high)
|
||||
if hotp(self._key, counter) == code
|
||||
), None)
|
||||
|
||||
def hotp(secret, counter):
|
||||
# C is the 64b counter encoded in big-endian
|
||||
C = struct.pack(">Q", counter)
|
||||
mac = hmac.new(secret, msg=C, digestmod=ALGORITHM).digest()
|
||||
# the data offset is the last nibble of the hash
|
||||
offset = mac[-1] & 0xF
|
||||
# code is the 4 bytes at the offset interpreted as a 31b big-endian uint
|
||||
# (31b to avoid sign concerns). This effectively limits digits to 9 and
|
||||
# hard-limits it to 10: each digit is normally worth 3.32 bits but the
|
||||
# 10th is only worth 1.1 (9 digits encode 29.9 bits).
|
||||
code = struct.unpack_from('>I', mac, offset)[0] & 0x7FFFFFFF
|
||||
r = code % (10 ** DIGITS)
|
||||
# NOTE: use text / bytes instead of int?
|
||||
return r
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
"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
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
<odoo>
|
||||
<record model="ir.model.access" id="access_auth_totp_wizard">
|
||||
<field name="name">auth_totp wizard access rules</field>
|
||||
<field name="model_id" ref="model_auth_totp_wizard"/>
|
||||
<field name="group_id" ref="base.group_user"/>
|
||||
<field name="perm_read">1</field>
|
||||
<field name="perm_write">1</field>
|
||||
<field name="perm_create">1</field>
|
||||
<field name="perm_unlink">1</field>
|
||||
</record>
|
||||
<record model="ir.rule" id="rule_auth_totp_wizard">
|
||||
<field name="name">Users can only access their own wizard</field>
|
||||
<field name="model_id" ref="model_auth_totp_wizard"/>
|
||||
<field name="domain_force">[('user_id', '=', user.id)]</field>
|
||||
</record>
|
||||
|
||||
<!-- rules for API token -->
|
||||
<record id="api_key_public" model="ir.rule">
|
||||
<field name="name">Public users can't interact with keys at all</field>
|
||||
<field name="model_id" ref="model_auth_totp_device"/>
|
||||
<field name="domain_force">[(0, '=', 1)]</field>
|
||||
<field name="groups" eval="[Command.link(ref('base.group_public'))]"/>
|
||||
</record>
|
||||
<record id="api_key_user" model="ir.rule">
|
||||
<field name="name">Users can read and delete their own keys</field>
|
||||
<field name="model_id" ref="model_auth_totp_device"/>
|
||||
<field name="domain_force">[('user_id', '=', user.id)]</field>
|
||||
<field name="groups" eval="[
|
||||
Command.link(ref('base.group_portal')),
|
||||
Command.link(ref('base.group_user')),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="api_key_admin" model="ir.rule">
|
||||
<field name="name">Administrators can view user keys to revoke them</field>
|
||||
<field name="model_id" ref="model_auth_totp_device"/>
|
||||
<field name="domain_force">[(1, '=', 1)]</field>
|
||||
<field name="groups" eval="[Command.link(ref('base.group_system'))]"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
.o_auth_2fa_btn {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
|
@ -0,0 +1,339 @@
|
|||
odoo.define('auth_totp.tours', function(require) {
|
||||
"use strict";
|
||||
|
||||
const tour = require('web_tour.tour');
|
||||
const ajax = require('web.ajax');
|
||||
|
||||
function openRoot() {
|
||||
return [{
|
||||
content: "return to client root to avoid race condition",
|
||||
trigger: 'body',
|
||||
run() {
|
||||
$('body').addClass('wait');
|
||||
window.location = '/web';
|
||||
}
|
||||
}, {
|
||||
content: "wait for client reload",
|
||||
trigger: 'body:not(.wait)',
|
||||
run() {}
|
||||
}];
|
||||
}
|
||||
function openUserProfileAtSecurityTab() {
|
||||
return [{
|
||||
content: 'Open user account menu',
|
||||
trigger: '.o_user_menu .oe_topbar_name',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Open preferences / profile screen",
|
||||
trigger: '[data-menu=settings]',
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "Switch to security tab",
|
||||
trigger: 'a[role=tab]:contains("Account Security")',
|
||||
run: 'click',
|
||||
}];
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks that the TOTP button is in the specified state (true = enabled =
|
||||
* can disable, false = disabled = can enable), then closes the profile 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}) {
|
||||
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;
|
||||
default: throw new Error(`Invalid totp state ${totp_state}`)
|
||||
}
|
||||
|
||||
return [{
|
||||
content,
|
||||
trigger,
|
||||
run() {
|
||||
const $modal = this.$anchor.parents('.o_dialog_container');
|
||||
if ($modal.length) {
|
||||
$modal.find('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() {},
|
||||
}];
|
||||
}
|
||||
|
||||
tour.register('totp_tour_setup', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [...openUserProfileAtSecurityTab(), {
|
||||
content: "Open totp wizard",
|
||||
trigger: 'button[name=action_totp_enable_wizard]',
|
||||
}, {
|
||||
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',
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
}, {
|
||||
content: "Check the wizard has opened",
|
||||
trigger: 'li:contains("When requested to do so")',
|
||||
run() {}
|
||||
}, {
|
||||
content: "Get secret from collapsed div",
|
||||
trigger: '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()
|
||||
});
|
||||
helpers.text(token, '[name=code] input');
|
||||
helpers.click('button.btn-primary:contains(Activate)');
|
||||
$('body').addClass('got-token')
|
||||
}
|
||||
}, {
|
||||
content: 'wait for rpc',
|
||||
trigger: 'body.got-token',
|
||||
run() {}
|
||||
},
|
||||
...openRoot(),
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...closeProfileDialog({
|
||||
content: "Check that the button has changed",
|
||||
totp_state: true,
|
||||
}),
|
||||
]);
|
||||
|
||||
tour.register('totp_login_enabled', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
}, {
|
||||
content: "expect totp screen",
|
||||
trigger: 'label:contains(Authentication Code)',
|
||||
}, {
|
||||
content: "input code",
|
||||
trigger: 'input[name=totp_token]',
|
||||
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")');
|
||||
}
|
||||
}, {
|
||||
content: "check we're logged in",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
run() {}
|
||||
}]);
|
||||
|
||||
tour.register('totp_login_device', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
}, {
|
||||
content: "expect totp screen",
|
||||
trigger: 'label:contains(Authentication Code)',
|
||||
}, {
|
||||
content: "check remember device box",
|
||||
trigger: 'label[for=switch-remember]',
|
||||
}, {
|
||||
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")');
|
||||
}
|
||||
}, {
|
||||
content: "check we're logged in",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
run: 'click',
|
||||
}, {
|
||||
content: "click the Log out button",
|
||||
trigger: '.dropdown-item[data-menu=logout]',
|
||||
}, {
|
||||
content: "check that we're back on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Log in)'
|
||||
}, {
|
||||
content: "input login again",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: 'input password again',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: "click da button again",
|
||||
trigger: 'button:contains("Log in")',
|
||||
}, {
|
||||
content: "check we're logged in without 2FA",
|
||||
trigger: ".o_user_menu .oe_topbar_name",
|
||||
run() {}
|
||||
},
|
||||
// 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(),
|
||||
{
|
||||
content: "Open totp wizard",
|
||||
trigger: 'button[name=action_totp_disable]',
|
||||
}, {
|
||||
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',
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
},
|
||||
...openRoot(),
|
||||
...openUserProfileAtSecurityTab(),
|
||||
...closeProfileDialog({
|
||||
content: "Check that the button has changed",
|
||||
totp_state: false
|
||||
}),
|
||||
]);
|
||||
|
||||
tour.register('totp_login_disabled', {
|
||||
test: true,
|
||||
url: '/'
|
||||
}, [{
|
||||
content: "check that we're on the login page or go to it",
|
||||
trigger: 'input#login, a:contains(Sign in)'
|
||||
}, {
|
||||
content: "input login",
|
||||
trigger: 'input#login',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: 'input password',
|
||||
trigger: 'input#password',
|
||||
run: 'text demo',
|
||||
}, {
|
||||
content: "click da button",
|
||||
trigger: 'button:contains("Log in")',
|
||||
},
|
||||
// normally we'd end the tour here as it's all we care about but there are a
|
||||
// bunch of ongoing queries from the loading of the web client which cause
|
||||
// issues, so go and open the preferences / profile screen to make sure
|
||||
// everything settles down
|
||||
...openUserProfileAtSecurityTab(),
|
||||
// close the dialog if that makes sense
|
||||
...closeProfileDialog({})
|
||||
]);
|
||||
|
||||
const columns = {};
|
||||
tour.register('totp_admin_disables', {
|
||||
test: true,
|
||||
url: '/web'
|
||||
}, [tour.stepUtils.showAppsMenuItem(), {
|
||||
content: 'Go to settings',
|
||||
trigger: '[data-menu-xmlid="base.menu_administration"]'
|
||||
}, {
|
||||
content: 'Wait for page',
|
||||
trigger: '.o_menu_brand:contains("Settings")',
|
||||
run() {}
|
||||
}, {
|
||||
content: "Open Users menu",
|
||||
trigger: '[data-menu-xmlid="base.menu_users"]'
|
||||
}, {
|
||||
content: "Open Users view",
|
||||
trigger: '[data-menu-xmlid="base.menu_action_res_users"]',
|
||||
run(helpers) {
|
||||
// funny story: the users view we're trying to reach, sometimes we're
|
||||
// already there, but if we re-click the next step executes before the
|
||||
// action has the time to re-load, the one after that doesn't, and our
|
||||
// selection get discarded by the action reloading, so here try to
|
||||
// see if we're already on the users action through the breadcrumb and
|
||||
// just close the menu if so
|
||||
const $crumb = $('.breadcrumb');
|
||||
if ($crumb.text().indexOf('Users') === -1) {
|
||||
// on general settings page, click menu
|
||||
helpers.click();
|
||||
} else {
|
||||
// else close menu
|
||||
helpers.click($('[data-menu-xmlid="base.menu_users"]'));
|
||||
}
|
||||
}
|
||||
}, {
|
||||
content: "Find Demo User",
|
||||
trigger: 'td.o_data_cell:contains("demo")',
|
||||
run(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: "Open Actions menu",
|
||||
trigger: 'button.dropdown-toggle:contains("Action")'
|
||||
}, {
|
||||
content: "Select totp remover",
|
||||
trigger: 'span.dropdown-item:contains(Disable two-factor authentication)'
|
||||
}, { // 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',
|
||||
}, {
|
||||
content: "Confirm",
|
||||
trigger: "button:contains(Confirm Password)",
|
||||
}, {
|
||||
content: "open the user's form",
|
||||
trigger: "td.o_data_cell:contains(demo)",
|
||||
}, {
|
||||
content: "go to Account security Tab",
|
||||
trigger: "a.nav-link:contains(Account Security)",
|
||||
}, ...closeProfileDialog({
|
||||
content: "check that demo user has been de-totp'd",
|
||||
totp_state: false,
|
||||
}),
|
||||
])
|
||||
});
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import test_totp
|
||||
126
odoo-bringout-oca-ocb-auth_totp/auth_totp/tests/test_totp.py
Normal file
126
odoo-bringout-oca-ocb-auth_totp/auth_totp/tests/test_totp.py
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
import logging
|
||||
import json
|
||||
import time
|
||||
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.tools import mute_logger
|
||||
|
||||
from ..controllers.home import Home
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class TestTOTPCommon:
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
totp = None
|
||||
# might be possible to do client-side using `crypto.subtle` instead of
|
||||
# this horror show, but requires working on 64b integers, & BigInt is
|
||||
# significantly less well supported than crypto
|
||||
def totp_hook(self, secret=None):
|
||||
nonlocal totp
|
||||
if totp is None:
|
||||
totp = TOTP(secret)
|
||||
if secret:
|
||||
return totp.generate().token
|
||||
else:
|
||||
# on check, take advantage of window because previous token has been
|
||||
# "burned" so we can't generate the same, but tour is so fast
|
||||
# we're pretty certainly within the same 30s
|
||||
return totp.generate(time.time() + 30).token
|
||||
# because not preprocessed by ControllerType metaclass
|
||||
totp_hook.routing_type = 'json'
|
||||
self.env['ir.http']._clear_routing_map()
|
||||
# patch Home to add test endpoint
|
||||
Home.totp_hook = http.route('/totphook', type='json', auth='none')(totp_hook)
|
||||
# remove endpoint and destroy routing map
|
||||
@self.addCleanup
|
||||
def _cleanup():
|
||||
del Home.totp_hook
|
||||
self.env['ir.http']._clear_routing_map()
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestTOTP(TestTOTPCommon, HttpCaseWithUserDemo):
|
||||
|
||||
def test_totp(self):
|
||||
# 1. Enable 2FA
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
|
||||
# 2. Verify that RPC is blocked because 2FA is on.
|
||||
self.assertFalse(
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {}),
|
||||
"Should not have returned a uid"
|
||||
)
|
||||
self.assertFalse(
|
||||
self.xmlrpc_common.authenticate(get_db_name(), 'demo', 'demo', {'interactive': True}),
|
||||
'Trying to fake the auth type should not work'
|
||||
)
|
||||
uid = self.user_demo.id
|
||||
with self.assertRaisesRegex(Fault, r'Access Denied'), mute_logger('odoo.http'):
|
||||
self.xmlrpc_object.execute_kw(
|
||||
get_db_name(), uid, 'demo',
|
||||
'res.users', 'read', [uid, ['login']]
|
||||
)
|
||||
|
||||
# 3. Check 2FA is required
|
||||
self.start_tour('/', 'totp_login_enabled', login=None)
|
||||
|
||||
# 4. Check 2FA is not requested on saved device and disable it
|
||||
self.start_tour('/', 'totp_login_device', login=None)
|
||||
|
||||
# 5. Finally, check that 2FA is in fact disabled
|
||||
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)
|
||||
[r] = self.xmlrpc_object.execute_kw(
|
||||
get_db_name(), uid, 'demo',
|
||||
'res.users', 'read', [uid, ['login']]
|
||||
)
|
||||
self.assertEqual(r['login'], 'demo')
|
||||
|
||||
|
||||
def test_totp_administration(self):
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
# 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('/', 'totp_login_disabled', login=None)
|
||||
|
||||
@mute_logger('odoo.http')
|
||||
def test_totp_authenticate(self):
|
||||
"""
|
||||
Ensure we don't leak the session info from an half-logged-in
|
||||
user.
|
||||
"""
|
||||
self.start_tour('/web', 'totp_tour_setup', login='demo')
|
||||
self.url_open('/web/session/logout')
|
||||
|
||||
headers = {
|
||||
"Content-Type": "application/json",
|
||||
}
|
||||
|
||||
payload = {
|
||||
"jsonrpc": "2.0",
|
||||
"method": "call",
|
||||
"id": 0,
|
||||
"params": {
|
||||
"db": get_db_name(),
|
||||
"login": "demo",
|
||||
"password": "demo",
|
||||
"context": {},
|
||||
},
|
||||
}
|
||||
response = self.url_open("/web/session/authenticate", data=json.dumps(payload), headers=headers)
|
||||
data = response.json()
|
||||
self.assertEqual(data['result']['uid'], None)
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="res_users_view_search">
|
||||
<field name="name">res.users.view.search.inherit.auth.totp</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_search" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//search" position="inside">
|
||||
<separator/>
|
||||
<filter name="totp_enabled" string="Two-factor authentication Enabled" domain="[('totp_enabled','!=',False)]"/>
|
||||
<filter name="totp_disabled" string="Two-factor authentication Disabled" domain="[('totp_enabled','=',False)]"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="view_totp_form">
|
||||
<field name="name">user form: add totp status</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[@name='preferences']" position="after">
|
||||
<page string="Account Security" name="security" attrs="{'invisible': [('id', '=', False)]}">
|
||||
<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>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="view_totp_field">
|
||||
<field name="name">users preference: totp</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form_simple_modif"/>
|
||||
<field name="arch" type="xml">
|
||||
<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"/>
|
||||
</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>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
<odoo>
|
||||
|
||||
<template id="auth_totp_form" name="Two-Factor Authentication">
|
||||
<t t-call="web.login_layout">
|
||||
<t t-set="disable_footer">1</t>
|
||||
<div class="oe_login_form">
|
||||
<h5 class="card-title">Two-factor Authentication</h5>
|
||||
<form method="POST" action="" class="">
|
||||
<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"
|
||||
title="Learn More" target="_blank">Learn More</a>
|
||||
</div>
|
||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
|
||||
<input type="hidden" name="redirect" t-att-value="redirect"/>
|
||||
<div class="mb-3">
|
||||
<label class="fw-bold" for="totp_token">Authentication Code</label>
|
||||
<input id="totp_token" name="totp_token" class="form-control mb-2"
|
||||
autocomplete="off" inputmode="numeric" autofocus="autofocus" required="required" placeholder="e.g. 123456"/>
|
||||
</div>
|
||||
<div class="text-center py-2 border-top">
|
||||
<p class="alert alert-danger" t-if="error" role="alert">
|
||||
<t t-esc="error"/>
|
||||
</p>
|
||||
<div class="mb-2 mt-2 text-muted">
|
||||
<input type="checkbox" name="remember" id="switch-remember" value="1"/>
|
||||
<label for="switch-remember">Don't ask again on this device</label>
|
||||
</div>
|
||||
<div t-attf-class="clearfix oe_login_buttons text-center d-grid mb-1">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
Log in
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<form method="POST" action="/web/session/logout">
|
||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
|
||||
<div class="w-100 text-center">
|
||||
<button type="submit" class="btn btn-link btn-sm mb-2">
|
||||
Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import auth_totp_wizard
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,80 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
import functools
|
||||
import io
|
||||
import qrcode
|
||||
import re
|
||||
import werkzeug.urls
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.addons.base.models.res_users import check_identity
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.http import request
|
||||
|
||||
from odoo.addons.auth_totp.models.totp import ALGORITHM, DIGITS, TIMESTEP
|
||||
|
||||
compress = functools.partial(re.sub, r'\s', '')
|
||||
|
||||
class TOTPWizard(models.TransientModel):
|
||||
_name = 'auth_totp.wizard'
|
||||
_description = "2-Factor Setup Wizard"
|
||||
|
||||
user_id = fields.Many2one('res.users', required=True, readonly=True)
|
||||
secret = fields.Char(required=True, readonly=True)
|
||||
url = fields.Char(store=True, readonly=True, compute='_compute_qrcode')
|
||||
qrcode = fields.Binary(
|
||||
attachment=False, store=True, readonly=True,
|
||||
compute='_compute_qrcode',
|
||||
)
|
||||
code = fields.Char(string="Verification Code", size=7)
|
||||
|
||||
@api.depends('user_id.login', 'user_id.company_id.display_name', 'secret')
|
||||
def _compute_qrcode(self):
|
||||
# TODO: make "issuer" configurable through config parameter?
|
||||
global_issuer = request and request.httprequest.host.split(':', 1)[0]
|
||||
for w in self:
|
||||
issuer = global_issuer or w.user_id.company_id.display_name
|
||||
w.url = url = werkzeug.urls.url_unparse((
|
||||
'otpauth', 'totp',
|
||||
werkzeug.urls.url_quote(f'{issuer}:{w.user_id.login}', safe=':'),
|
||||
werkzeug.urls.url_encode({
|
||||
'secret': compress(w.secret),
|
||||
'issuer': issuer,
|
||||
# apparently a lowercase hash name is anathema to google
|
||||
# authenticator (error) and passlib (no token)
|
||||
'algorithm': ALGORITHM.upper(),
|
||||
'digits': DIGITS,
|
||||
'period': TIMESTEP,
|
||||
}), ''
|
||||
))
|
||||
|
||||
data = io.BytesIO()
|
||||
qrcode.make(url.encode(), box_size=4).save(data, optimise=True, format='PNG')
|
||||
w.qrcode = base64.b64encode(data.getvalue()).decode()
|
||||
|
||||
@check_identity
|
||||
def enable(self):
|
||||
try:
|
||||
c = int(compress(self.code))
|
||||
except ValueError:
|
||||
raise UserError(_("The verification code should only contain numbers"))
|
||||
if self.user_id._totp_try_setting(self.secret, c):
|
||||
self.secret = '' # empty it, because why keep it until GC?
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'type': 'success',
|
||||
'message': _("2-Factor authentication is now enabled."),
|
||||
'next': {'type': 'ir.actions.act_window_close'},
|
||||
}
|
||||
}
|
||||
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)
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_totp_wizard">
|
||||
<field name="name">auth_totp wizard</field>
|
||||
<field name="model">auth_totp.wizard</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<sheet>
|
||||
<div class="o_auth_totp_enable_2FA container">
|
||||
<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"><a data-bs-toggle="collapse"
|
||||
href="#collapseTotpSecret" role="button" aria-expanded="false"
|
||||
aria-controls="collapseTotpSecret">Cannot scan it?</a></h3>
|
||||
<div class="collapse" id="collapseTotpSecret">
|
||||
<field name="secret" widget="CopyClipboardChar" readonly="1" class="mb-3 ps-3"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Version -->
|
||||
<div class="text-center 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>
|
||||
</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"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
32
odoo-bringout-oca-ocb-auth_totp/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-auth_totp/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Auth_totp Module - auth_totp
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-auth_totp/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-auth_totp/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for auth_totp. Configure related models, access rights, and options as needed.
|
||||
17
odoo-bringout-oca-ocb-auth_totp/doc/CONTROLLERS.md
Normal file
17
odoo-bringout-oca-ocb-auth_totp/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
5
odoo-bringout-oca-ocb-auth_totp/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-auth_totp/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [web](../../odoo-bringout-oca-ocb-web)
|
||||
4
odoo-bringout-oca-ocb-auth_totp/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-auth_totp/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon auth_totp or install in UI.
|
||||
7
odoo-bringout-oca-ocb-auth_totp/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-auth_totp/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-auth_totp"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-auth_totp"
|
||||
```
|
||||
15
odoo-bringout-oca-ocb-auth_totp/doc/MODELS.md
Normal file
15
odoo-bringout-oca-ocb-auth_totp/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in auth_totp.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class auth_totp_device
|
||||
class ir_http
|
||||
class res_users
|
||||
class res_users_apikeys
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-auth_totp/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-auth_totp/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: auth_totp. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon auth_totp
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Patch: Remove App Store Download Links
|
||||
|
||||
## Module: auth_totp
|
||||
|
||||
### Description
|
||||
This patch removes mobile app store download links (Apple App Store and Google Play Store) from the Two-Factor Authentication (TOTP) setup wizard.
|
||||
|
||||
### Files Modified
|
||||
- `auth_totp/wizard/auth_totp_wizard_views.xml`
|
||||
|
||||
### Changes Made
|
||||
|
||||
#### File: auth_totp/wizard/auth_totp_wizard_views.xml
|
||||
**Lines removed: 22-29**
|
||||
|
||||
Removed the following section containing mobile app store download links:
|
||||
```xml
|
||||
<div class="d-block d-md-none">
|
||||
<a href="https://play.google.com/store/search?q=authenticator&c=apps" class="mx-2" target="blank">
|
||||
<img alt="On Google Play" style="width: 24px;" src="/base_setup/static/src/img/logo_google_play.png"/>
|
||||
</a>
|
||||
<a href="http://appstore.com/2fa" class="mx-2" target="blank">
|
||||
<img alt="On Apple Store" style="width: 24px;" src="/base_setup/static/src/img/logo_apple_store.png"/>
|
||||
</a>
|
||||
</div>
|
||||
```
|
||||
|
||||
### Impact
|
||||
- Users will no longer see direct download links to mobile app stores when setting up 2FA
|
||||
- The instruction text for installing authenticator apps remains intact
|
||||
- The QR code and manual key entry functionality is unaffected
|
||||
- All other TOTP wizard functionality remains unchanged
|
||||
|
||||
### Reason
|
||||
Removal of proprietary mobile app store references to maintain a more neutral, open-source focused user experience.
|
||||
|
||||
---
|
||||
**Patch Created:** 2025-08-27
|
||||
**Applied By:** Claude Code Assistant
|
||||
3
odoo-bringout-oca-ocb-auth_totp/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-auth_totp/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
41
odoo-bringout-oca-ocb-auth_totp/doc/SECURITY.md
Normal file
41
odoo-bringout-oca-ocb-auth_totp/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in auth_totp.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../auth_totp/security/ir.model.access.csv)**
|
||||
- 2 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[security.xml](../auth_totp/security/security.xml)**
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../auth_totp/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
- **[security.xml](../auth_totp/security/security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue