mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-19 13:32:04 +02:00
19.0 vanilla
This commit is contained in:
parent
20ddc1b4a3
commit
c0efcc53f5
1162 changed files with 125577 additions and 105287 deletions
|
|
@ -12,7 +12,6 @@ Allow users to login through OAuth2 Provider.
|
|||
'data': [
|
||||
'data/auth_oauth_data.xml',
|
||||
'views/auth_oauth_views.xml',
|
||||
'views/res_users_views.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/auth_oauth_templates.xml',
|
||||
'security/ir.model.access.csv',
|
||||
|
|
@ -22,5 +21,6 @@ Allow users to login through OAuth2 Provider.
|
|||
'auth_oauth/static/**/*',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ from werkzeug.exceptions import BadRequest
|
|||
from odoo import api, http, SUPERUSER_ID, _
|
||||
from odoo.exceptions import AccessDenied
|
||||
from odoo.http import request, Response
|
||||
from odoo import registry as registry_get
|
||||
from odoo.modules.registry import Registry
|
||||
from odoo.tools.misc import clean_context
|
||||
|
||||
from odoo.addons.auth_signup.controllers.main import AuthSignupHome as Home
|
||||
|
|
@ -119,7 +119,7 @@ class OAuthLogin(Home):
|
|||
|
||||
class OAuthController(http.Controller):
|
||||
|
||||
@http.route('/auth_oauth/signin', type='http', auth='none')
|
||||
@http.route('/auth_oauth/signin', type='http', auth='none', readonly=False)
|
||||
@fragment_to_query_string
|
||||
def signin(self, **kw):
|
||||
state = json.loads(kw['state'])
|
||||
|
|
@ -142,16 +142,17 @@ class OAuthController(http.Controller):
|
|||
action = state.get('a')
|
||||
menu = state.get('m')
|
||||
redirect = werkzeug.urls.url_unquote_plus(state['r']) if state.get('r') else False
|
||||
url = '/web'
|
||||
url = '/odoo'
|
||||
if redirect:
|
||||
url = redirect
|
||||
elif action:
|
||||
url = '/web#action=%s' % action
|
||||
url = '/odoo/action-%s' % action
|
||||
elif menu:
|
||||
url = '/web#menu_id=%s' % menu
|
||||
url = '/odoo?menu_id=%s' % menu
|
||||
|
||||
pre_uid = request.session.authenticate(dbname, login, key)
|
||||
resp = request.redirect(_get_login_redirect_url(pre_uid, url), 303)
|
||||
credential = {'login': login, 'token': key, 'type': 'oauth_token'}
|
||||
auth_info = request.session.authenticate(request.env, credential)
|
||||
resp = request.redirect(_get_login_redirect_url(auth_info['uid'], url), 303)
|
||||
resp.autocorrect_location_header = False
|
||||
|
||||
# Since /web is hardcoded, verify user has right to land on it
|
||||
|
|
@ -175,7 +176,7 @@ class OAuthController(http.Controller):
|
|||
redirect.autocorrect_location_header = False
|
||||
return redirect
|
||||
|
||||
@http.route('/auth_oauth/oea', type='http', auth='none')
|
||||
@http.route('/auth_oauth/oea', type='http', auth='none', readonly=False)
|
||||
def oea(self, **kw):
|
||||
"""login user via Odoo Account provider"""
|
||||
dbname = kw.pop('db', None)
|
||||
|
|
@ -186,7 +187,7 @@ class OAuthController(http.Controller):
|
|||
if not http.db_filter([dbname]):
|
||||
raise BadRequest()
|
||||
|
||||
registry = registry_get(dbname)
|
||||
registry = Registry(dbname)
|
||||
with registry.cursor() as cr:
|
||||
try:
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
<field name="auth_endpoint">https://accounts.odoo.com/oauth2/auth</field>
|
||||
<field name="scope">userinfo</field>
|
||||
<field name="validation_endpoint">https://accounts.odoo.com/oauth2/tokeninfo</field>
|
||||
<field name="css_class">fa fa-fw o_custom_icon</field>
|
||||
<field name="body">Log in with Odoo.com</field>
|
||||
<field name="css_class">o_auth_oauth_provider_icon o_odoo_provider</field>
|
||||
<field name="body">Sign in with Odoo.com</field>
|
||||
<field name="enabled" eval="True"/>
|
||||
</record>
|
||||
<record id="provider_facebook" model="auth.oauth.provider">
|
||||
|
|
@ -16,16 +16,16 @@
|
|||
<field name="scope">public_profile,email</field>
|
||||
<field name="validation_endpoint">https://graph.facebook.com/me</field>
|
||||
<field name="data_endpoint">https://graph.facebook.com/me?fields=id,name,email</field>
|
||||
<field name="css_class">fa fa-fw fa-facebook-square</field>
|
||||
<field name="body">Log in with Facebook</field>
|
||||
<field name="css_class">o_auth_oauth_provider_icon o_facebook_provider</field>
|
||||
<field name="body">Sign in with Facebook</field>
|
||||
</record>
|
||||
<record id="provider_google" model="auth.oauth.provider">
|
||||
<field name="name">Google OAuth2</field>
|
||||
<field name="auth_endpoint">https://accounts.google.com/o/oauth2/auth</field>
|
||||
<field name="scope">openid profile email</field>
|
||||
<field name="validation_endpoint">https://www.googleapis.com/oauth2/v3/userinfo</field>
|
||||
<field name="css_class">fa fa-fw fa-google</field>
|
||||
<field name="body">Log in with Google</field>
|
||||
<field name="css_class">o_auth_oauth_provider_icon o_google_provider</field>
|
||||
<field name="body">Sign in with Google</field>
|
||||
</record>
|
||||
|
||||
<!-- Use database uuid as client_id for OpenERP oauth provider -->
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language: 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_oauth
|
||||
|
|
@ -26,13 +26,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -97,11 +96,6 @@ msgstr ""
|
|||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
|
|
@ -112,11 +106,6 @@ msgstr ""
|
|||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -221,7 +210,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -243,11 +231,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: 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_oauth
|
||||
|
|
@ -22,12 +22,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -92,11 +92,6 @@ msgstr ""
|
|||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
|
|
@ -107,11 +102,6 @@ msgstr ""
|
|||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -206,7 +196,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
msgstr "ቅደም ተከተል"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
|
|
@ -214,8 +204,8 @@ msgid "Server uri"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -235,12 +225,9 @@ msgid "UserInfo URL"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,51 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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>, 2022\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- أو -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>الدرس التدريبي"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "تم رفض الوصول "
|
||||
msgstr "تم رفض الوصول"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "السماح للمستخدمين بتسجيل الدخول عن طريق Google "
|
||||
msgstr "السماح للمستخدمين بتسجيل الدخول عن طريق Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام حسابات Google "
|
||||
msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام حسابات Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -55,12 +47,12 @@ msgstr "مسموح به"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "رابط URL للتفويض "
|
||||
msgstr "رابط URL للتفويض"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "محددات CSS "
|
||||
msgstr "محددات CSS"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
|
|
@ -76,7 +68,7 @@ msgstr "مُعرف العميل:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
msgstr "تهيئة الإعدادات"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -91,33 +83,34 @@ msgstr "أنشئ في"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "نقطة نهاية البيانات "
|
||||
msgstr "نقطة نهاية البيانات"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "التوثيق"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "مصادقة Google "
|
||||
msgstr "مصادقة Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "يحتوي على رمز وصول OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -131,32 +124,23 @@ msgstr "آخر تحديث في"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "ربط النص في حوار تسجيل الدخول "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "تسجيل الدخول بواسطة Facebook "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "تسجيل الدخول بواسطة Google "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "تسجيل الدخول بواسطة Odoo.com "
|
||||
msgstr "ربط النص في حوار تسجيل الدخول"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "بطاقة عنوان زر تسجيل الدخول "
|
||||
msgstr "بطاقة عنوان زر تسجيل الدخول"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "الهوية غير موجودة"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "رمز وصول OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "متجر رمز وصول OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -172,23 +156,18 @@ msgstr "مزوّدو OAuth"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "يجب أن يكون معرف OAuth UID فريدًا لكل مزوّد "
|
||||
msgstr "يجب أن يكون معرف OAuth UID فريدًا لكل مزوّد"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "معرّف مستخدم OAuth "
|
||||
msgstr "معرّف مستخدم OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "مزود OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -207,29 +186,48 @@ msgstr "المزودون"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "النطاق "
|
||||
msgstr "النطاق"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "التسلسل "
|
||||
msgstr "تسلسل"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "سيرفر uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "تسجيل الدخول بواسطة Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "تسجيل الدخول بواسطة Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "تسجيل الدخول بواسطة Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "لا تسمح قاعدة البيانات هذه بالتسجيل فيها. "
|
||||
msgstr "لا تسمح قاعدة البيانات هذه بالتسجيل فيها."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "معيار النظام "
|
||||
msgstr "معيار النظام"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "درس توضيحي"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -239,12 +237,11 @@ msgstr "المستخدم"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "رابط URL لمعلومات المستخدم "
|
||||
msgstr "رابط URL لمعلومات المستخدم"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -252,7 +249,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"لا تملك صلاحيات كافية للوصول إلى قاعدة البيانات هذه، أو أن صلاحية دعوتك قد "
|
||||
"انتهت. الرجاء طلب دعوة جديدة والتأكد من اتباعك للرابط الموجود في رسالة "
|
||||
"الدعوة. "
|
||||
"الدعوة."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "لا تملك الأذونات المطلوبة لإزالة رمز الوصول"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -263,4 +266,22 @@ msgstr "arch"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "مثال: 1234-xyz.apps.googleusercontent.com "
|
||||
msgstr "مثال: 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- أو -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "تسجيل الدخول بواسطة Facebook "
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "تسجيل الدخول بواسطة Google "
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "تسجيل الدخول بواسطة Odoo.com "
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "رمز وصول OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "OAuth"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -15,20 +15,9 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -90,27 +79,28 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -128,29 +118,20 @@ msgstr ""
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -179,11 +160,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -214,10 +190,24 @@ msgstr ""
|
|||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -226,6 +216,11 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -239,13 +234,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
|
|||
|
|
@ -1,40 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
#
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:02+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Giriş Qadağandır"
|
||||
|
||||
|
|
@ -96,28 +86,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Sənədləşmə"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,29 +125,20 @@ msgstr "Son Yenilənmə tarixi"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -185,11 +167,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -220,10 +197,24 @@ msgstr "Ardıcıllıq"
|
|||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -232,6 +223,11 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr "Sistem Parametri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,13 +241,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
|
|||
|
|
@ -1,43 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Nikola Iliev, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Meglen Hadzhitsanchev, 2024
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Meglen Hadzhitsanchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:02+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- или -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Туториал"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Отказан достъп"
|
||||
|
||||
|
|
@ -99,28 +90,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google автентификация"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -137,35 +129,26 @@ msgstr "Последно актуализирано на"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Текст на връзката в диалоговия прозорец за влизане"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Влизане с Facebook акаунт"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Влизане с Google акаунт"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Влизане с Odoo.com акаунт"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Етикет на бутона за влизане"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth токен за достъп"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Доставчик на OAuth "
|
||||
msgstr "Доставчик на OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
|
|
@ -188,11 +171,6 @@ msgstr "ИН на OAuth потребител"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Доставчик на OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -223,10 +201,24 @@ msgstr "Последователност"
|
|||
msgid "Server uri"
|
||||
msgstr "Сървър uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Регистриране в тази база данни не е разрешено."
|
||||
|
||||
|
|
@ -235,6 +227,11 @@ msgstr "Регистриране в тази база данни не е раз
|
|||
msgid "System Parameter"
|
||||
msgstr "Системни параметри"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -248,7 +245,6 @@ msgstr "URL с информация за потребителя"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -257,6 +253,12 @@ msgstr ""
|
|||
"Нямате достъп до тази база данни или поканата Ви е изтекла. Моля, поискайте "
|
||||
"покана и се уверете, че следвате линка в имейла Ви с поканата."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -267,3 +269,9 @@ msgstr "архитектура"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth токен за достъп"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,94 +1,81 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/bs/>\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "— ili —"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Upute"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py
|
||||
#, python-format
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr "Pristup Odbijen"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Dozvoli prijavu sa Google računom"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Dozvoli prijavu sa Google računom"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "Dopušteno"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "URL autorizacije"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "CSS klasa"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "ID Klijenta"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "ID klijenta:"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
|
|
@ -97,171 +84,152 @@ msgstr "Kreirano"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Krajnja tačka za podatke"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google Authentikacija"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "tekst linka u dijalogu prijave"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Prijava preko Facebooka"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Prijava preko Google"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prijava preko Odoo.com"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Natpis na gumbu za prijavu"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token OAuth pristupa"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Pružatelj OAuth"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "Pružatelji OAuth"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID mora biti jedinstven po pružatelju"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "OAuth Korisnički ID"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 pružatelj"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "user_id OAuth pružatelja usluge"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Naziv pružatelja usluge"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Pružatelji"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Opseg"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "ULI Poslužitelja"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py
|
||||
#, python-format
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Prijava nije dozvoljena na ovoj bazi."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Sistemski parametar"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -270,29 +238,30 @@ msgstr "Korisnik"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "URL korisničkih informacija"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py
|
||||
#, python-format
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Nemate pristup ovoj bazi ili je Vaša pozivnica istekla. Molimo zatražite "
|
||||
"pozivnicu i kliknite na link u e-mailu prije nego istekne."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "arhitektura"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "npr. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Bàrbara Partegàs <barbararof@gmail.com>, 2022
|
||||
# 7b9408628f00af852f513eb4f12c005b_f9c6891, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# AncesLatino2004, 2022
|
||||
# jabelchi, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# M Palau <mpalau@tda.ad>, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2022
|
||||
# Óscar Fonseca <tecnico@extreme-micro.com>, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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 Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:30+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- o -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Accés denegat"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Permetre als usuaris registrar-se amb Google "
|
||||
msgstr "Permetre als usuaris registrar-se amb Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Permetre als usuaris registrar-se amb el seu compte de Google "
|
||||
msgstr "Permetre als usuaris registrar-se amb el seu compte de Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -84,7 +75,7 @@ msgstr "ID de client:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -103,13 +94,11 @@ msgstr "Punt final de dades"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentació "
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -117,14 +106,17 @@ msgid "Google Authentication"
|
|||
msgstr "Autenticació de Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -141,30 +133,21 @@ msgstr "Última actualització el"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Text de l'enllaç al diàleg d'inici de sessió"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Inicia sessió amb Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Inicieu sessió amb Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Inicieu sessió amb Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Etiqueta del botó d'inici de sessió"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token d'accés OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -192,11 +175,6 @@ msgstr "ID d'usuari de OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Proveïdor OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -210,7 +188,7 @@ msgstr "Nom de proveïdor"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Proveïdors "
|
||||
msgstr "Proveïdors"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -227,10 +205,24 @@ msgstr "Seqüència"
|
|||
msgid "Server uri"
|
||||
msgstr "URI del servidor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "El registre no està permès en aquesta base de dades"
|
||||
|
||||
|
|
@ -239,6 +231,11 @@ msgstr "El registre no està permès en aquesta base de dades"
|
|||
msgid "System Parameter"
|
||||
msgstr "Paràmetres del sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -252,15 +249,20 @@ msgstr "URL d'informació d'usuari"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"No teniu accés a aquesta base de dades o la seva invitació ha caducat. Si us"
|
||||
" plau, sol·liciteu una invitació i assegureu-vos de seguir l'enllaç del "
|
||||
"correu d'invitació. "
|
||||
"No teniu accés a aquesta base de dades o la seva invitació ha caducat. Si us "
|
||||
"plau, sol·liciteu una invitació i assegureu-vos de seguir l'enllaç del "
|
||||
"correu d'invitació."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -272,3 +274,21 @@ msgstr "arc"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- o -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Inicia sessió amb Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Inicieu sessió amb Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Inicieu sessió amb Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token d'accés OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "OAuth"
|
||||
|
|
|
|||
|
|
@ -1,50 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Jakub Smolka, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
#
|
||||
# Jiří Podhorecký, 2022
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Ivana Bartonkova, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:41+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/auth_oauth/"
|
||||
"cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- nebo -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Přístup zamítnut"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Umožněte uživatelům přihlásit se pomocí Google"
|
||||
msgstr "Umožnit uživatelům přihlašovat se pomocí Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -54,7 +45,7 @@ msgstr "Umožněte uživatelům přihlásit se pomocí svého účtu Google"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "Povoleno"
|
||||
msgstr "Povolen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
|
|
@ -64,13 +55,13 @@ msgstr "Autorizační URL"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "CSS class"
|
||||
msgstr "CSS třída"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Client ID"
|
||||
msgstr "Klientské ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -80,17 +71,17 @@ msgstr "ID klienta:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
msgstr "Konfigurační nastavení"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
msgstr "Vytvořeno uživatelem"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -99,109 +90,96 @@ msgstr "Datový endpoint"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentace"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Ověření Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Text odkazu v přihlašovacím dialogu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Přihlásit se pomocí Facebooku"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Přihlaste se pomocí Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Přihlaste se pomocí Odoo.com"
|
||||
msgstr "Text zobrazený v přihlašovacím okně"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Popis přihlašovacího tlačítka"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Přístupový token OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Poskytovatel OAuth"
|
||||
msgstr "OAuth poskytovatel"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuth poskytovatelé "
|
||||
msgstr "OAuth poskytovatelé"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "UID OAuth musí být pro každého poskytovatele jedinečné"
|
||||
msgstr "OAuth UID musí být pro každého poskytovatele unikátní"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "ID uživatele OAuth"
|
||||
msgstr "OAuth ID uživatele"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "Poskytovatel OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "OAuth2 poskytovatel"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Poskytovatel Oauth user_id"
|
||||
msgstr "OAuth user_id poskytovatele"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Jméno poskytovatele"
|
||||
msgstr "Název poskytovatele"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
|
|
@ -216,17 +194,31 @@ msgstr "Rozsah"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Číselná řada"
|
||||
msgstr "Sekvence"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "URI serveru"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registrace není v této databázi povolena."
|
||||
|
||||
|
|
@ -235,6 +227,11 @@ msgstr "Registrace není v této databázi povolena."
|
|||
msgid "System Parameter"
|
||||
msgstr "Systémový parametr"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -248,7 +245,6 @@ msgstr "UserInfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -257,6 +253,12 @@ msgstr ""
|
|||
"K této databázi nemáte přístup nebo platnost vaší pozvánky vypršela. "
|
||||
"Požádejte o pozvánku a postupujte podle odkazu v e-mailu s pozvánkou."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -267,3 +269,21 @@ msgstr "oblouk"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "např. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- nebo -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Přihlásit se pomocí Facebooku"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Přihlaste se pomocí Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Přihlaste se pomocí Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Přístupový token OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:20+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- eller -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Vejledning"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Adgang nægtet"
|
||||
|
||||
|
|
@ -75,7 +67,7 @@ msgstr "Kunde ID:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
msgstr "Konfigurationsindstillinger"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -94,28 +86,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google godkendelse"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -132,30 +125,21 @@ msgstr "Sidst opdateret den"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Tekst til login-dialogen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Log ind med Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Log ind med Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Log ind med Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Adgangs nøgle"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -183,11 +167,6 @@ msgstr "OAuth Bruger ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 udbyder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -218,10 +197,24 @@ msgstr "Sekvens"
|
|||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Sign up er ikke tilladt på denne database."
|
||||
|
||||
|
|
@ -230,6 +223,11 @@ msgstr "Sign up er ikke tilladt på denne database."
|
|||
msgid "System Parameter"
|
||||
msgstr "Systemparameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -243,7 +241,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -252,6 +249,12 @@ msgstr ""
|
|||
"Du har ikke adgang til denne database eller din invitation er udløbet. Bed "
|
||||
"om en invitation og følg linket i invitations mailen."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -262,3 +265,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "eks. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- eller -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Log ind med Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Log ind med Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Log ind med Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Adgangs nøgle"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,46 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:41+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- oder -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Benutzern erlauben, sich mit Google-Konto anzumelden"
|
||||
msgstr "Erlauben Sie es Benutzern, sich mit einem Google-Konto anzumelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -71,7 +64,7 @@ msgstr "Client-ID"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "Client-ID"
|
||||
msgstr "Client-ID:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
|
|
@ -95,28 +88,29 @@ msgstr "Datenendpunkt"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Authentifizierung via Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Hat OAuth-Zugriffstoken"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,46 +127,37 @@ msgstr "Zuletzt aktualisiert am"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Text für den Link im Anmeldedialog"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Mit Facebook anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Mit Google anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Mit Odoo.com anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Bezeichnung der Anmeldeschaltfläche"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Betreffkennung fehlt"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth-Zugriffstoken"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Speicherung des OAuth-Zugriffstokens"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "OAuth-Provider"
|
||||
msgstr "OAuth-Anbieter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuth-Provider"
|
||||
msgstr "OAuth-Anbieter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth-UID muss je Provider eindeutig sein"
|
||||
msgstr "Die OAuth-UID muss pro Anbieter eindeutig sein"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
|
|
@ -182,27 +167,22 @@ msgstr "OAuth-Benutzer-ID"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2-Provider"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "OAuth2-Anbieter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth-Provider user_id"
|
||||
msgstr "user_id des Oauth-Anbieters"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Provider-Name"
|
||||
msgstr "Name des Anbieters"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Provider"
|
||||
msgstr "Anbieter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -219,10 +199,24 @@ msgstr "Sequenz"
|
|||
msgid "Server uri"
|
||||
msgstr "Server-URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Mit Facebook anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Mit Google anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Mit Odoo.com anmelden"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Die Anmeldung ist in dieser Datenbank nicht erlaubt."
|
||||
|
||||
|
|
@ -231,6 +225,11 @@ msgstr "Die Anmeldung ist in dieser Datenbank nicht erlaubt."
|
|||
msgid "System Parameter"
|
||||
msgstr "Systemparameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,7 +243,6 @@ msgstr "Benutzerinfo-URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -254,6 +252,12 @@ msgstr ""
|
|||
"mittlerweise ablaufen sind. Bitte fragen Sie eine Einladung an und folgen "
|
||||
"Sie dem Link in Ihrer Einladungsmail."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Sie sind nicht berechtigt, das Zugriffstoken zu entfernen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -264,3 +268,21 @@ msgstr "Arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "z. B. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- oder -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Mit Facebook anmelden"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Login mit Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Login mit Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Zugangstoken"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Panagiotis karampaglis <panosdotk@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-21 02:30+0000\n"
|
||||
"Last-Translator: Panagiotis karampaglis <panosdotk@gmail.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/auth_oauth/"
|
||||
"el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Εκμάθηση"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr "Μη επιτρεπτή πρόσβαση"
|
||||
msgstr "Δεν επιτρέπεται η πρόσβαση"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
|
|
@ -53,13 +47,8 @@ msgstr "Επιτρέπεται"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr "Διεύθυνση URL αυθεντικοποίησης"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Body"
|
||||
msgstr "Κυρίως θέμα"
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
|
|
@ -80,7 +69,7 @@ msgstr "Client ID:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
msgstr "Ρυθμίσεις διαμόρφωσης"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -94,11 +83,14 @@ msgstr "Δημιουργήθηκε στις"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr "Διεύθυνση URL δεδομένων"
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
|
|
@ -108,14 +100,17 @@ msgid "Google Authentication"
|
|||
msgstr "Έλεγχος ταυτότητας Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -127,10 +122,26 @@ msgstr "Τελευταία Ενημέρωση από"
|
|||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Διακριτικό πρόσβασης OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -144,7 +155,7 @@ msgid "OAuth Providers"
|
|||
msgstr "Πάροχοι OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "Το OAuth UID πρέπει να είναι μοναδικό ανά πάροχο"
|
||||
|
||||
|
|
@ -158,11 +169,6 @@ msgstr "Κωδικός Πελάτη OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Πάροχος OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -194,8 +200,23 @@ msgid "Server uri"
|
|||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Η Εγγραφή δεν επιτρέπεται σε αυτή τη βάση δεδομένων."
|
||||
|
||||
|
|
@ -204,19 +225,24 @@ msgstr "Η Εγγραφή δεν επιτρέπεται σε αυτή τη βά
|
|||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr "Διεύθυνση URL επικύρωσης"
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -226,6 +252,12 @@ msgstr ""
|
|||
"Παρακαλώ ζητήσετε μια πρόσκληση και φροντίστε να ακολουθήσετε το σύνδεσμο "
|
||||
"στο email πρόσκλησης."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -236,3 +268,9 @@ msgstr "αρχιτεκτονική"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "π.χ. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Διακριτικό πρόσβασης OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,395 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" - Create a new project<br/>\n"
|
||||
" - Go to Api Access<br/>\n"
|
||||
" - Create an oauth client_id<br/>\n"
|
||||
" - Edit settings and set both Authorized "
|
||||
"Redirect URIs and Authorized JavaScript Origins to your hostname.<br/>\n"
|
||||
" <br/>\n"
|
||||
" Now copy paste the client_id here:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Access Denied"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_payable_id
|
||||
msgid "Account Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_receivable_id
|
||||
msgid "Account Receivable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_base_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_bank_account_count
|
||||
msgid "Bank"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_base_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_ref_company_ids
|
||||
msgid "Companies that refers to partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_contract_ids
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_contracts_count
|
||||
msgid "Contracts"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_payment_term_id
|
||||
msgid "Customer Payment Term"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_trust
|
||||
msgid "Degree of trust you have in this debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_position_id
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid "Google APIs console"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_has_unreconciled_entries
|
||||
msgid "Has unreconciled entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_invoice_ids
|
||||
msgid "Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_issued_total
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_journal_item_count
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_last_time_entries_checked
|
||||
msgid ""
|
||||
"Last time the invoices & payments matching was performed for this partner. "
|
||||
"It is set either if there's not at least an unreconciled debit and an "
|
||||
"unreconciled credit or if you click the \"Done\" button."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_last_time_entries_checked
|
||||
msgid "Latest Invoices & Payments Matching Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_debit_limit
|
||||
msgid "Payable Limit"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:96
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_position_id
|
||||
msgid ""
|
||||
"The fiscal position will determine taxes and accounts used for the partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_has_unreconciled_entries
|
||||
msgid ""
|
||||
"The partner has at least one unreconciled debit and credit since last time "
|
||||
"the invoices & payments matching was performed."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_payable_id
|
||||
msgid ""
|
||||
"This account will be used instead of the default one as the payable account "
|
||||
"for the current partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_receivable_id
|
||||
msgid ""
|
||||
"This account will be used instead of the default one as the receivable "
|
||||
"account for the current partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_supplier_payment_term_id
|
||||
msgid ""
|
||||
"This payment term will be used instead of the default one for purchase "
|
||||
"orders and vendor bills"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_payment_term_id
|
||||
msgid ""
|
||||
"This payment term will be used instead of the default one for sale orders "
|
||||
"and customer invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid ""
|
||||
"To setup the signin process with Google, first you have to perform the "
|
||||
"following steps:<br/>\n"
|
||||
" <br/>\n"
|
||||
" - Go to the"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_total_invoiced
|
||||
msgid "Total Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_debit
|
||||
msgid "Total Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_credit
|
||||
msgid "Total Receivable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_credit
|
||||
msgid "Total amount this customer owes you."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_debit
|
||||
msgid "Total amount you have to pay to this vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_currency_id
|
||||
msgid "Utility field to express amount currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_supplier_payment_term_id
|
||||
msgid "Vendor Payment Term"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_website_message_ids
|
||||
msgid "Website Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_website_message_ids
|
||||
msgid "Website communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_list
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_base_config_settings
|
||||
msgid "base.config.settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequence"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,39 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-01 15:03+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- o - "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Acceso denegado"
|
||||
|
||||
|
|
@ -95,13 +88,11 @@ msgstr "Punto final de datos"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentación"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -109,14 +100,17 @@ msgid "Google Authentication"
|
|||
msgstr "Autenticación de Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Tiene token de acceso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,30 +127,21 @@ msgstr "Última actualización el"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Texto del enlace en la ventana de acceso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Acceder con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Acceder con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Acceder con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Etiqueta del botón de inicio de sesión"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Falta la identidad del sujeto"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token OAuth de acceso"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Almacenamiento de token de acceso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -184,15 +169,10 @@ msgstr "Identificación de usuario OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Proveedor OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "user_id del proveedor OAuth "
|
||||
msgstr "user_id del proveedor OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -219,10 +199,24 @@ msgstr "Secuencia"
|
|||
msgid "Server uri"
|
||||
msgstr "URI del servidor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Iniciar sesión con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Iniciar sesión con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Iniciar sesión con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "No se permiten registros en esta base de datos."
|
||||
|
||||
|
|
@ -231,6 +225,11 @@ msgstr "No se permiten registros en esta base de datos."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parámetro del sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,7 +243,6 @@ msgstr "URL de UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -254,6 +252,12 @@ msgstr ""
|
|||
"una invitación y asegúrese de hacer clic en el enlace del correo de "
|
||||
"invitación."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "No tiene permiso para eliminar el token de acceso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -264,3 +268,21 @@ msgstr "arquitectura"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "ej. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- o - "
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Acceder con Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Acceder con Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Acceder con Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token OAuth de acceso"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,40 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lucia Pacheco, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 07:45+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_oauth/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- o - "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Acceso denegado"
|
||||
|
||||
|
|
@ -92,32 +79,33 @@ msgstr "Creado el"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
msgstr "Punto de conexión de datos"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentación"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autenticación de Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Tiene token OAuth de acceso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,30 +122,21 @@ msgstr "Última actualización el"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Texto del enlace en la ventana de inicio de sesión"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Acceder con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Acceder con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Acceder con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Etiqueta del botón de inicio de sesión"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Falta la identidad del sujeto"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token OAuth de acceso"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Almacenamiento del token de acceso de OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -185,15 +164,10 @@ msgstr "ID de usuario OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Proveedor OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "user_id del proveedor OAuth "
|
||||
msgstr "user_id del proveedor OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -220,18 +194,37 @@ msgstr "Secuencia"
|
|||
msgid "Server uri"
|
||||
msgstr "URI del servidor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Iniciar sesión con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Iniciar sesión con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Iniciar sesión con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "No se permiten registros en esta base de datos."
|
||||
msgstr "No está permitido registrarse en esta base de datos."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Parámetro del sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,7 +238,6 @@ msgstr "URL de UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -254,6 +246,12 @@ msgstr ""
|
|||
"No tienes acceso a esta base de datos o tu invitación caducó. Solicita una "
|
||||
"invitación y asegúrate de hacer clic en el enlace del correo de invitación."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "No tienes permiso para eliminar el token de acceso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -263,4 +261,10 @@ msgstr "arquitectura"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "p. ej., 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "Por ejemplo, 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
||||
#~ msgid "Remove Token"
|
||||
#~ msgstr "Eliminar token"
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
|
|
@ -10,38 +10,27 @@
|
|||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Egon Raamat <egon@avalah.ee>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Birgit Vijar, 2024
|
||||
# Anna, 2024
|
||||
# Stevin Lilla, 2024
|
||||
#
|
||||
# Anna, 2023
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Stevin Lilla, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:30+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/et/>\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- või -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Õpetus"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Juurdepääs keelatud"
|
||||
|
||||
|
|
@ -103,28 +92,29 @@ msgstr "Andmepunkt"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentatsioon"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google autentimine"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -141,30 +131,21 @@ msgstr "Viimati uuendatud"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Sisselogimine Facebook'iga"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Sisselogimine Google'iga"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Sisselogimine Odoo.com'ga"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Sisselogimise nupu silt"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -192,11 +173,6 @@ msgstr "OAuth kasutaja ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 teenusepakkuja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -227,10 +203,24 @@ msgstr "Järjestus"
|
|||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Sisselogimine ei lubatud selles andmebaasis."
|
||||
|
||||
|
|
@ -239,6 +229,11 @@ msgstr "Sisselogimine ei lubatud selles andmebaasis."
|
|||
msgid "System Parameter"
|
||||
msgstr "Süsteemi parameeter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -252,7 +247,6 @@ msgstr "Kasutajainfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -261,6 +255,12 @@ msgstr ""
|
|||
"Teil ei ole ligipääsu sellele andmebaasile või Teie kutse on aegunud. Palun "
|
||||
"küsige kutse ja järgige juhiseid e-kirja kutses."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -271,3 +271,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "nt. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- või -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Sisselogimine Facebook'iga"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Sisselogimine Google'iga"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Sisselogimine Odoo.com'ga"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuentzia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,42 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:03+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/fa/>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- or -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "امکان دسترسی وجود ندارد"
|
||||
|
||||
|
|
@ -98,28 +88,29 @@ msgstr "مقصد داده"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "مستندات"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "صدور مجوز گوگل"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -136,30 +127,21 @@ msgstr "آخرین بروز رسانی در"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "متن را در پنجرهی ورود لینک کنید"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "با فیسبوک وارد شوید"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "با گوگل وارد شوید"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "با Odoo.com وارد شوید"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "برچسب دکمهی ورود"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "توکن دسترسی OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -187,11 +169,6 @@ msgstr "شناسهی کاربری OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "ارائهدهندهی OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -222,10 +199,24 @@ msgstr "دنباله"
|
|||
msgid "Server uri"
|
||||
msgstr "شناسهی منبع یکسان سرور"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "عضویت در این پایگاه داده مجاز نیست"
|
||||
|
||||
|
|
@ -234,6 +225,11 @@ msgstr "عضویت در این پایگاه داده مجاز نیست"
|
|||
msgid "System Parameter"
|
||||
msgstr "پارامتر سیستم"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -247,15 +243,20 @@ msgstr "نشانی اطلاعات کاربری"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"شما به این پایگاه داده دسترسی ندارید و یا دعوتنامهی شما منقضی شده است. "
|
||||
"لطفاً تقاضای دعوتنامه کنید و مطمئن شوید که لینک موجود در ایمیل دعوت خود را "
|
||||
"دنبال میکنید. "
|
||||
"شما به این پایگاه داده دسترسی ندارید و یا دعوتنامهی شما منقضی شده است. لطفاً "
|
||||
"تقاضای دعوتنامه کنید و مطمئن شوید که لینک موجود در ایمیل دعوت خود را دنبال "
|
||||
"میکنید."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Heikki Katajisto <heikki.katajisto@myyntivoima.fi>, 2022
|
||||
|
|
@ -11,42 +11,34 @@
|
|||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Jesse Järvi <me@jessejarvi.net>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jesse Järvi <me@jessejarvi.net>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-19 06:23+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- tai -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Käyttöohje"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Käyttö estetty"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Salli käyttäjien kirjautua Google tunnuksilla"
|
||||
msgstr "Salli käyttäjien kirjautua Google-tunnuksilla"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -61,23 +53,23 @@ msgstr "Sallittu"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "Autentikoinnin URL (Authorization URL)"
|
||||
msgstr "Tunnistautumisen URL"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "CSS luokka"
|
||||
msgstr "CSS-luokka"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Asiakkaan tunniste/ID"
|
||||
msgstr "Asiakkaan tunnus/ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "Client ID:"
|
||||
msgstr "Asiakkaan tunnus/ID:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
|
|
@ -101,28 +93,29 @@ msgstr "Datapäätepiste (Data Endpoint)"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentaatio"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google-tunnistautuminen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Sisältää OAuth-käyttöoikeustunnuksen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -139,66 +132,52 @@ msgstr "Viimeksi päivitetty"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Liitä teksti kirjautumisikkunaan"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Facebook-kirjautuminen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Google-kirjautuminen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Odoo.com-tunnistautuminen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Kirjaudu-painikkeen nimi"
|
||||
msgstr "Kirjaudu-painikkeen otsake"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Puuttuva kohteen identiteetti"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth-käyttöoikeustunnuksen tallennus"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "OAuth Provider"
|
||||
msgstr "OAuth-palveluntarjoaja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuth Providers"
|
||||
msgstr "OAuth-palveluntarjoajat"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID täytyy olla Provider-kohtaisesti yksilöllinen "
|
||||
msgstr "OAuth UID täytyy olla yksilöllinen per palveluntarjoaja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "OAuth User ID"
|
||||
msgstr "OAuth-käyttäjätunnus"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 provider"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "OAuth2-palveluntarjoaja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth tarjoajan käyttäjätunnus/user_id"
|
||||
msgstr "Oauth-palveluntarjoaja käyttäjätunnus/user_id"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -225,10 +204,24 @@ msgstr "Järjestys"
|
|||
msgid "Server uri"
|
||||
msgstr "Palvelimen URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Kirjaudu sisään Facebookilla"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Kirjaudu sisään Googlella"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Kirjaudu sisään Odoo.comilla"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Kirjautuminen tietokantaan ei ole sallittu."
|
||||
|
||||
|
|
@ -237,6 +230,11 @@ msgstr "Kirjautuminen tietokantaan ei ole sallittu."
|
|||
msgid "System Parameter"
|
||||
msgstr "Järjestelmäparametri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Opastus"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -250,22 +248,45 @@ msgstr "UserInfon URL (UserInfo URL)"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Sinulla ei ole pääsyä tähän tietokantaan tai käyttäjäkutsusi on vanhentunut."
|
||||
" Pyydä uutta kutsua ja varmista että seuraat kutsuviestissä olevaa linkkiä."
|
||||
"Sinulla ei ole pääsyä tähän tietokantaan tai käyttäjäkutsusi on vanhentunut. "
|
||||
"Pyydä uutta kutsua ja varmista, että seuraat kutsuviestissä olevaa linkkiä."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Sinulla ei ole oikeuksia poistaa tätä käyttöoikeustunnusta"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "arch"
|
||||
msgstr "arkkitehtuuri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "esim. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- tai -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Facebook-kirjautuminen"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Google-kirjautuminen"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Odoo.com-tunnistautuminen"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,40 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Manon Rondou, 2024\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:11+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ou -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutoriel"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Accès refusé"
|
||||
|
||||
|
|
@ -92,72 +84,64 @@ msgstr "Créé le"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Point d'extrémité des données"
|
||||
msgstr "Point de terminaison des données"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Authentification Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Possède un jeton d'accès OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Texte du lien dans l'invite de connexion"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Se connecter avec Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Se connecter avec Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Se connecter avec Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Libellé du bouton de connexion"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Identité manquante du sujet"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Jeton d'accès OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Stockage du jeton d'accès OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -185,11 +169,6 @@ msgstr "ID utilisateur OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Fournisseur OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -220,10 +199,24 @@ msgstr "Séquence"
|
|||
msgid "Server uri"
|
||||
msgstr "URI du serveur"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Se connecter avec Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Se connecter avec Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Se connecter avec Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "L'inscription n'est pas autorisée sur cette base de données."
|
||||
|
||||
|
|
@ -232,6 +225,11 @@ msgstr "L'inscription n'est pas autorisée sur cette base de données."
|
|||
msgid "System Parameter"
|
||||
msgstr "Paramètres système"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutoriel"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,7 +243,6 @@ msgstr "URL des UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -255,6 +252,12 @@ msgstr ""
|
|||
"invitation a expiré. Merci de faire une demande d'invitation, et de cliquer "
|
||||
"sur le lien contenu dans l'e-mail d'invitation."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Vous n'avez pas les permissions pour supprimer le jeton d'accès"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -265,3 +268,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "par ex. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- ou -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Se connecter avec Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Se connecter avec Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Se connecter avec Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Jeton d'accès OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -7,11 +7,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:14+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -19,197 +18,150 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" - Create a new project<br/>\n"
|
||||
" - Go to Api Access<br/>\n"
|
||||
" - Create an oauth client_id<br/>\n"
|
||||
" - Edit settings and set both Authorized "
|
||||
"Redirect URIs and Authorized JavaScript Origins to your hostname.<br/>\n"
|
||||
" <br/>\n"
|
||||
" Now copy paste the client_id here:"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr "Accès refusé"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_payable_id
|
||||
msgid "Account Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_receivable_id
|
||||
msgid "Account Receivable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_base_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_bank_account_count
|
||||
msgid "Bank"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_base_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_ref_company_ids
|
||||
msgid "Companies that refers to partner"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_contract_ids
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_contracts_count
|
||||
msgid "Contracts"
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_currency_id
|
||||
msgid "Currency"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_payment_term_id
|
||||
msgid "Customer Payment Term"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_trust
|
||||
msgid "Degree of trust you have in this debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_account_position_id
|
||||
msgid "Fiscal Position"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid "Google APIs console"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_has_unreconciled_entries
|
||||
msgid "Has unreconciled entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_invoice_ids
|
||||
msgid "Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_issued_total
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_journal_item_count
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_last_time_entries_checked
|
||||
msgid ""
|
||||
"Last time the invoices & payments matching was performed for this partner. "
|
||||
"It is set either if there's not at least an unreconciled debit and an "
|
||||
"unreconciled credit or if you click the \"Done\" button."
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_last_time_entries_checked
|
||||
msgid "Latest Invoices & Payments Matching Date"
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -224,17 +176,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_debit_limit
|
||||
msgid "Payable Limit"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -244,152 +191,54 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:96
|
||||
#, python-format
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_position_id
|
||||
msgid ""
|
||||
"The fiscal position will determine taxes and accounts used for the partner."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_has_unreconciled_entries
|
||||
msgid ""
|
||||
"The partner has at least one unreconciled debit and credit since last time "
|
||||
"the invoices & payments matching was performed."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_payable_id
|
||||
msgid ""
|
||||
"This account will be used instead of the default one as the payable account "
|
||||
"for the current partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_account_receivable_id
|
||||
msgid ""
|
||||
"This account will be used instead of the default one as the receivable "
|
||||
"account for the current partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_supplier_payment_term_id
|
||||
msgid ""
|
||||
"This payment term will be used instead of the default one for purchase "
|
||||
"orders and vendor bills"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_property_payment_term_id
|
||||
msgid ""
|
||||
"This payment term will be used instead of the default one for sale orders "
|
||||
"and customer invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
msgid ""
|
||||
"To setup the signin process with Google, first you have to perform the "
|
||||
"following steps:<br/>\n"
|
||||
" <br/>\n"
|
||||
" - Go to the"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_total_invoiced
|
||||
msgid "Total Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_debit
|
||||
msgid "Total Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_credit
|
||||
msgid "Total Receivable"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_credit
|
||||
msgid "Total amount this customer owes you."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_debit
|
||||
msgid "Total amount you have to pay to this vendor."
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_currency_id
|
||||
msgid "Utility field to express amount currency"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_property_supplier_payment_term_id
|
||||
msgid "Vendor Payment Term"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_website_message_ids
|
||||
msgid "Website Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_website_message_ids
|
||||
msgid "Website communication history"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_list
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_base_config_settings
|
||||
msgid "base.config.settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_general_configuration
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language: 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_oauth
|
||||
|
|
@ -26,13 +26,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -97,11 +96,6 @@ msgstr ""
|
|||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
|
|
@ -112,11 +106,6 @@ msgstr ""
|
|||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -221,7 +210,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -243,11 +231,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# david danilov, 2022
|
||||
# Martin Trigaux, 2022
|
||||
|
|
@ -11,37 +11,28 @@
|
|||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# yael terner, 2023
|
||||
# or balmas, 2025
|
||||
#
|
||||
# or balmas <or@laylinetech.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:03+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- או -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>מדריך"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "הגישה נדחתה"
|
||||
|
||||
|
|
@ -103,28 +94,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "תיעוד"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "אימות גוגל"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -141,29 +133,20 @@ msgstr "עדכון אחרון ב"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "התחברות עם פייסבוק"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "התחברות עם גוגל"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "התחברות עם Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "תגית בכפתור כניסה"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -192,11 +175,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -227,10 +205,24 @@ msgstr "רצף"
|
|||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -239,6 +231,11 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr "פרמטר מערכת"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "מדריך"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -252,13 +249,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -269,3 +271,15 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- או -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "התחברות עם פייסבוק"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "התחברות עם גוגל"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "התחברות עם Odoo.com"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:22+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/auth_oauth/"
|
||||
"hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
msgstr "ऐक्सेस के लिए मना किया गया"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
|
|
@ -51,7 +38,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
msgstr "अनुमति दी गई"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
|
|
@ -67,7 +54,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
msgstr "क्लाइंड आईडी"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -82,7 +69,7 @@ msgstr "कॉन्फ़िगरेशन सेटिंग"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
msgstr "इन्होंने बनाया"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
|
|
@ -96,13 +83,11 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -110,14 +95,17 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,29 +122,20 @@ msgstr "आखिरी बार अपडेट हुआ"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -178,22 +157,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
msgstr "OAuth यूज़र आईडी"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
msgstr "Oauth प्रोवाइडर user_id"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -203,34 +177,53 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
msgstr "प्रोवाइडर"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "स्कोप"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "अनुक्रम"
|
||||
msgstr "सीक्वेंस"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
msgstr "सिस्टम पैरामीटर"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "ट्यूटोरियल"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -245,18 +238,23 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
msgstr "आर्क"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
|
|||
|
|
@ -1,42 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Jasmina Otročak <jasmina@uvid.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tina Milas, 2022
|
||||
# Bole <bole@dajmi5.com>, 2024
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Bole <bole@dajmi5.com>, 2024\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:03+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/hr/>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "— ili —"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Upute"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Pristup odbijen / zabranjen"
|
||||
|
||||
|
|
@ -98,28 +90,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google Authentikacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -136,30 +129,21 @@ msgstr "Vrijeme promjene"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "tekst linka u dijalogu prijave"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Prijava preko Facebooka"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Prijava preko Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prijava preko Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Natpis na gumbu za prijavu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token OAuth pristupa"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -187,11 +171,6 @@ msgstr "OAuth Korisnički ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 pružatelj"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -222,10 +201,24 @@ msgstr "Sekvenca"
|
|||
msgid "Server uri"
|
||||
msgstr "ULI Poslužitelja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Prijava nije dozvoljena na ovoj bazi."
|
||||
|
||||
|
|
@ -234,6 +227,11 @@ msgstr "Prijava nije dozvoljena na ovoj bazi."
|
|||
msgid "System Parameter"
|
||||
msgstr "Sistemski parametar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -247,7 +245,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -256,6 +253,12 @@ msgstr ""
|
|||
"Nemate pristup ovoj bazi ili je Vaša pozivnica istekla. Molimo zatražite "
|
||||
"pozivnicu i kliknite na link u e-mailu prije nego istekne."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -266,3 +269,21 @@ msgstr "arhitektura"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "npr. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "— ili —"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Prijava preko Facebooka"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Prijava preko Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Prijava preko Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token OAuth pristupa"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
|
|
@ -12,35 +12,26 @@
|
|||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:46+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- vagy -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Útmutató"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Hozzáférés megtagadva"
|
||||
|
||||
|
|
@ -83,7 +74,7 @@ msgstr "Ügyfél azonosító:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -102,28 +93,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentáció"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google Hitelesítés"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,37 +125,28 @@ msgstr "Frissítette"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Hivatkozó szöveg a bejelentkezésnél"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Bejelentkezés Facebook fiókkal"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Bejelentkezés Google fiókkal"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Bejelentkezés Odoo.com fiókkal"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth hozzáférési token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -191,11 +174,6 @@ msgstr "OAuth felhasználó azonosító"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 szolgáltató"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -226,10 +204,24 @@ msgstr "Sorszám"
|
|||
msgid "Server uri"
|
||||
msgstr "Szerver cím"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "A feliratkozás nem megengedett erre az adatbázisra."
|
||||
|
||||
|
|
@ -238,6 +230,11 @@ msgstr "A feliratkozás nem megengedett erre az adatbázisra."
|
|||
msgid "System Parameter"
|
||||
msgstr "Rendszer paraméter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -251,7 +248,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -261,6 +257,12 @@ msgstr ""
|
|||
"Kérjen meghívót és győződjön meg róla, hogy az e-mail-ben elküldött "
|
||||
"hivatkozást használja."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -271,3 +273,21 @@ msgstr "vezető"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "pl. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- vagy -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Bejelentkezés Facebook fiókkal"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Bejelentkezés Google fiókkal"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Bejelentkezés Odoo.com fiókkal"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth hozzáférési token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,255 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
@ -1,39 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:32+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- atau -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Akses Ditolak"
|
||||
|
||||
|
|
@ -95,68 +86,60 @@ msgstr "Data Endpoint"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autentikasi Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Memiliki Token OAuth Access"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
msgstr "Terakhir Diperbarui oleh"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Teks link di Login Dialog"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Log in with Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Log in dengan Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Log in dengan Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Label tombol login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Kurang identitas subyek"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token akses OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Toko OAuth Access Token"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -184,11 +167,6 @@ msgstr "ID Pengguna OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Penyedia OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -219,10 +197,24 @@ msgstr "Urutan"
|
|||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Sign in dengan Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Sign in dengan Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Sign in dengan Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Pendaftaran tidak diperbolehkan di basisdata ini."
|
||||
|
||||
|
|
@ -231,6 +223,11 @@ msgstr "Pendaftaran tidak diperbolehkan di basisdata ini."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parameter Sistem"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,16 +241,21 @@ msgstr "UserInfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Anda tidak memiliki akses ke basisdata ini atau undangan anda telah "
|
||||
"kadaluarsa. Mohon minta undangan dan pastikan untuk mengikuti tautan di "
|
||||
"kadaluwarsa. Mohon minta undangan dan pastikan untuk mengikuti tautan di "
|
||||
"email undangan."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Anda tidak memiliki izin untuk menghapus token akses"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -264,3 +266,9 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "misal 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token akses OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,81 +1,76 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+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"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: 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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- eða -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Aðgangi hafnað"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Leyfa notendum að skrá sig inn með Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Leyfa notendum að skrá sig inn með Google reikningnum sínum"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "Leyfilegt"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "Heimildarslóð"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -85,37 +80,27 @@ msgstr "Búið til af"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
msgstr "Stofnað þann"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Gagnaendapunktur"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
msgstr "Auðkenni"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -130,136 +115,128 @@ msgstr "Síðast uppfært þann"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Tengla texti í innskráningarglugga"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Skráðu þig inn með Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Skráðu þig inn með Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Skráðu þig inn með Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Merki innskráningarhnapps"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth aðgangslykil"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "OAuth veitandi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuth veitendur"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID verður að vera einstakt fyrir hverja þjónustuveitu"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "OAuth notandaauðkenni"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 veitandi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth veitanda user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Nafn veitanda"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Vefþjónar"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Umfang"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Röð"
|
||||
msgstr "Runa"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Skráning er ekki leyfð í þessum gagnagrunni."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Kerfisbreyta"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
"Þú hefur ekki aðgang að þessum gagnagrunni eða boð þitt er útrunnið. "
|
||||
"Vinsamlegast biðjið um boð og vertu viss um að fylgja hlekknum í boðinu í "
|
||||
"póstinum þínum."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "t.d. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,39 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2022
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:21+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- oppure -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Guida utente"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Accesso negato"
|
||||
|
||||
|
|
@ -95,28 +88,29 @@ msgstr "Endpoint dei dati"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentazione"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autenticazione Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Ha token di accesso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,30 +127,21 @@ msgstr "Ultimo aggiornamento il"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Testo del link nella finestra di dialogo di accesso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Accedi con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Accedi con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Accedi con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Etichetta pulsante accesso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Identità oggetto mancante"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token di accesso OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Archivio Token di accesso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -184,11 +169,6 @@ msgstr "ID utente OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Fornitore OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -219,10 +199,24 @@ msgstr "Sequenza"
|
|||
msgid "Server uri"
|
||||
msgstr "URI del server"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Registrati con Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Registrati con Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Registrati con Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Accesso a questo database non consentito."
|
||||
|
||||
|
|
@ -231,6 +225,11 @@ msgstr "Accesso a questo database non consentito."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parametro di sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,7 +243,6 @@ msgstr "URL UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -254,6 +252,12 @@ msgstr ""
|
|||
"un invito e accertarsi di seguire correttamente il link nella e-mail "
|
||||
"ricevuta."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Non hai i permessi per eliminare il token di accesso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -264,3 +268,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "es. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- o -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Accedi con Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Accedi con Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Accedi con Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,41 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2024
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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, 2024\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 02:30+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- または -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>チュートリアル"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "アクセスが拒否されました。"
|
||||
msgstr "アクセスが拒否されました"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
|
|
@ -76,7 +68,7 @@ msgstr "クライアントID"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
msgstr "構成設定"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -95,28 +87,29 @@ msgstr "データエンドポイント"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "ドキュメント"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google認証"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "OAuthアクセストークンあり"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,46 +126,37 @@ msgstr "最終更新日"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "ログインダイアログのリンクテキスト"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Facebookでログイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Googleでログイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Odoo.comでログイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "ログインボタンラベル"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "サブジェクト識別情報が欠落しています"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuthアクセストークン"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuthアクセストークンストア"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "OAuthプロバイダ"
|
||||
msgstr "OAuthプロバイダー"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuthプロバイダ"
|
||||
msgstr "OAuthプロバイダー"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID はプロバイダごとにユニークでなくてはなりません"
|
||||
msgstr "OAuth UID はプロバイダーごとにユニークでなくてはなりません"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
|
|
@ -182,27 +166,22 @@ msgstr "OAuthユーザID"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2プロバイダ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "OAuth2プロバイダー"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "OAuthプロバイダユーザ"
|
||||
msgstr "OAuthプロバイダーユーザ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "プロバイダ名"
|
||||
msgstr "プロバイダー名"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "プロバイダ"
|
||||
msgstr "プロバイダー"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -212,25 +191,44 @@ msgstr "スコープ"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "付番"
|
||||
msgstr "シーケンス"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "サーバuri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Facebookでサインイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Googleでサインイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Odoo.comでサインイン"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "このデータベースにサインアップすることはできません。"
|
||||
msgstr "このデータベースに登録することはできません。"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "システムパラメタ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "チュートリアル"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,12 +242,19 @@ msgstr "ユーザ情報URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr "このデータベースにアクセスできないか、招待状の有効期限が切れています。 招待状を依頼し、招待状メールのリンクに必ず従ってください。"
|
||||
msgstr ""
|
||||
"このデータベースにアクセスできないか、招待状の有効期限が切れています。 招待状"
|
||||
"を依頼し、招待状メールのリンクに必ず従ってください。"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "アクセストークンを削除する権限がありません"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -261,3 +266,9 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "例: 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuthアクセストークン"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "მიმდევრობა"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/kab/>\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +38,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +64,30 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,32 +97,51 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +152,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -147,17 +167,12 @@ msgid "OAuth2 provider"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,45 +182,76 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Agzum"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr "Aseqdac"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -216,13 +262,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,57 +1,54 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Chan Nath <channath@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: 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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ឬ -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>ការបង្រៀន"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "មិនមានសិទ្ធិចូលប្រើ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "អនុញ្ញាតឱ្យអ្នកប្រើចូលជាមួយ Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "អនុញ្ញាតឱ្យអ្នកប្រើចូលជាមួយគណនី Google របស់ពួកគេ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "ការអនុញាត"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
|
|
@ -61,23 +58,23 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "ថ្នាក់ CSS "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "អត្តលេខរបស់អតិថិជន"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "អត្តលេខរបស់អតិថិជន"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -99,25 +96,15 @@ msgstr ""
|
|||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "ការសម្គាល់ Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -132,22 +119,22 @@ msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "ភ្ជាប់អត្ថបទនៅក្នុងប្រអប់ចូលសន្ទនា "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "ការចូលទៅក្នុងបណ្តាញសង្គម"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "ចូលជាមួយ Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "ចូលជាមួយ Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
|
|
@ -157,58 +144,58 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth ដំណើរការរបស់ Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "ដំណើរការរបស់ OAuth "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "ការផ្តល់ជូន OAuth "
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID ត្រូវតែមានតែមួយសម្រាប់អ្នកផ្តល់សេវាកម្ម"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "លេខសម្គាល់អ្នកប្រើ OAuth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "ក្រុមហ៊ុន OAuth2"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "អ្នកផ្ដល់ Oauth អ្នកប្រើ _id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "ឈ្មោះក្រុមហ៊ុនផ្ដល់"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "ក្រុមហ៊ុនផ្តល់ជូន"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "វិសាលភាព"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
|
|
@ -218,24 +205,23 @@ msgstr "លំដាប់"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "ម៉ាស៊ីនបម្រើ uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "ចុះឈ្មោះមិនត្រូវបានអនុញ្ញាតនៅលើមូលដ្ឋានទិន្នន័យនេះទេ។"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "ប៉ារ៉ាម៉ែត្រប្រព័ន្ធ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
|
|
@ -245,22 +231,16 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
"អ្នកមិនមានសិទ្ធិចូលក្នុងមូលដ្ឋានទិន្នន័យនេះទេឬការអញ្ជើញរបស់អ្នកបានផុតកំណត់។ "
|
||||
"សូមស្នើសុំការអញ្ជើញហើយត្រូវប្រាកដថាតំណតាមអ៊ីម៉ែលអញ្ជើញរបស់អ្នក"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "មូល"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "ឧ។ 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,53 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:38+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- 또는 -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>자습서"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "접근이 거부되었습니다"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "구글로 로그온할 수 있도록 합니다"
|
||||
msgstr "사용자가 구글로 로그인할 수 있습니다"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "사용자가 Google 계정으로 로그인할 수 있도록 허용합니다."
|
||||
msgstr "사용자가 구글 계정으로 로그인할 수 있습니다"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -78,7 +67,7 @@ msgstr "고객 ID"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -97,28 +86,29 @@ msgstr "데이터 엔드포인트"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "문서화"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "구글 인증"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "OAuth 액세스 토큰 있음"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,30 +125,21 @@ msgstr "최근 갱신 일자"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "로그인 대화 상자의 텍스트 링크"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "페이스북으로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Google로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Odoo.com으로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "로그인 버튼 라벨"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "누락된 제목"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth 접근 토큰"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth 액세스 토큰 보관"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -186,11 +167,6 @@ msgstr "OAuth 사용자 ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 공급자"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -221,10 +197,24 @@ msgstr "순서"
|
|||
msgid "Server uri"
|
||||
msgstr "서버 URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Facebook으로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Google로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Odoo.com으로 로그인"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "이 데이터베이스에는 가입이 허용되지 않습니다."
|
||||
|
||||
|
|
@ -233,6 +223,11 @@ msgstr "이 데이터베이스에는 가입이 허용되지 않습니다."
|
|||
msgid "System Parameter"
|
||||
msgstr "시스템 매개 변수"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "튜토리얼"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -246,12 +241,19 @@ msgstr "사용자 정보 URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr "이 데이터베이스에 접근할 수 없거나 초대기간이 만료됐습니다. 초청장을 요청해주시고 초청 이메일의 링크를 클릭해주세요."
|
||||
msgstr ""
|
||||
"이 데이터베이스에 접근할 수 없거나 초대기간이 만료됐습니다. 초청장을 요청해주"
|
||||
"시고 초청 이메일의 링크를 클릭해주세요."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "이 액세스 토큰을 제거할 권한이 없습니다."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -262,4 +264,22 @@ msgstr "arch"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "예) 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "예: 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- 또는 -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "페이스북으로 로그인"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Google로 로그인"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Odoo.com으로 로그인"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth 접근 토큰"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,55 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:22+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_oauth/ckb/>\n"
|
||||
"Language: ku\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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Доступ забаронены"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
msgstr "ڕێگە بە بەکارهێنەران بدە لە ڕێگەی گووگڵەوە بچنە ژوورەوە"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
msgstr "ڕێگە بە بەکارهێنەران بدەن بە ئەکاونتی گووگڵەکەیان بچنە ژوورەوە"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
msgstr "ڕێپێدراو"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
|
|
@ -75,17 +64,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
msgstr "دروستکراوە لەلایەن..."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
msgstr "دروستکراوە لە"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -94,67 +83,59 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Дакументацыя"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
msgstr "دوایین نوێکردنەوە لەلایەن..."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
msgstr "دوایین نوێکردنەوە لە..."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -183,11 +164,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -196,32 +172,46 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
msgstr "ناوی دابینکەر"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
msgstr "دابینکەران"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Воблась доступу"
|
||||
msgstr "مەودا"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
msgstr "زنجیرە"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -230,10 +220,15 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
msgstr "بەکارهێنەر"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
|
|
@ -243,18 +238,23 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
msgstr "کەوانە"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -1,18 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -22,12 +22,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,12 +48,7 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Body"
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -89,7 +84,7 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data URL"
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -107,11 +102,6 @@ msgstr ""
|
|||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -122,6 +112,31 @@ msgstr ""
|
|||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
|
|
@ -189,8 +204,8 @@ msgid "Server uri"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -201,21 +216,18 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,24 +1,18 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 11.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"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: 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_oauth
|
||||
|
|
@ -28,13 +22,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -77,17 +70,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -97,11 +90,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -112,22 +100,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
|
|
@ -213,7 +196,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "ລຳດັບ"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
|
|
@ -223,7 +206,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -235,7 +217,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
|
|
@ -245,11 +227,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
|
|
@ -14,35 +14,28 @@
|
|||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- arba -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Instrukcija"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Prieiga neleidžiama"
|
||||
|
||||
|
|
@ -104,28 +97,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "\"Google\" autentifikacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -142,30 +136,21 @@ msgstr "Paskutinį kartą atnaujinta"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prisijungti su Odoo.com paskyra"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth prieigos raktas"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -191,12 +176,7 @@ msgstr "OAuth vartotojo ID"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 tiekėjas "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "OAuth2 tiekėjas"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
|
|
@ -211,7 +191,7 @@ msgstr "Tiekėjo pavadinimas"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Tiekėjai "
|
||||
msgstr "Tiekėjai"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -228,10 +208,24 @@ msgstr "Seka"
|
|||
msgid "Server uri"
|
||||
msgstr "Serverio uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registravimasis šioje duomenų bazėje nėra leidžiamas."
|
||||
|
||||
|
|
@ -240,6 +234,11 @@ msgstr "Registravimasis šioje duomenų bazėje nėra leidžiamas."
|
|||
msgid "System Parameter"
|
||||
msgstr "Sistemos parametrai"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -253,7 +252,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -263,6 +261,12 @@ msgstr ""
|
|||
"baigėsi. Paprašykite pakvietimo ir pakvietimo laiške paspauskite pakvietimo "
|
||||
"nuorodą."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -273,3 +277,15 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "pvz. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- arba -"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Prisijungti su Odoo.com paskyra"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth prieigos raktas"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,41 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Anzelika Adejanova, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:32+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Latvian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/lv/>\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- vai -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Piekļuve liegta"
|
||||
|
||||
|
|
@ -68,7 +59,7 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Klienta ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -97,28 +88,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentācija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,29 +127,20 @@ msgstr "Pēdējoreiz atjaunots"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -186,11 +169,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -204,12 +182,12 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Maksājumu sniedzēji"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Darbības joma"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
|
|
@ -221,17 +199,36 @@ msgstr "Secība"
|
|||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Sistēmas parametrs"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -246,13 +243,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -262,4 +264,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "piem. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- vai -"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,28 +45,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -71,22 +71,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
|
|
@ -96,32 +101,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -132,12 +157,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -152,12 +177,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -167,43 +192,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Секвенца"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -216,13 +243,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,40 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- эсвэл -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Дасгал"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Хандалтыг татгалзав"
|
||||
|
||||
|
|
@ -97,28 +86,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Баримтжуулалт"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google нэвтрэх горим"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,30 +125,21 @@ msgstr "Сүүлд зассан огноо"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -186,11 +167,6 @@ msgstr "OAuth Хэрэглэгчийн ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 үйлчилгээ үзүүлэгч"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -221,10 +197,24 @@ msgstr "Дугаарлалт"
|
|||
msgid "Server uri"
|
||||
msgstr "Серверийн uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Энэ мэдээллийн санд нэвтрэхийг зөвшөөрөөгүй."
|
||||
|
||||
|
|
@ -233,6 +223,11 @@ msgstr "Энэ мэдээллийн санд нэвтрэхийг зөвшөөр
|
|||
msgid "System Parameter"
|
||||
msgstr "Системийн оролтын утгууд"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -246,7 +241,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -256,6 +250,12 @@ msgstr ""
|
|||
"дууссан байна. Урилгын хүсэлт илгээж улмаар ирсэн имэйл доторх холбоосыг "
|
||||
"ашиглан хандаарай."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -266,3 +266,12 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "ж.нь. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- эсвэл -"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Oakarmin Iron <oakarminiron@gmail.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:22+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/my/>\n"
|
||||
"Language: my\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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -75,17 +65,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
msgstr "ဖန်တီးသူ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
msgstr "တည်ဆောက်သည့်အချိန်"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -94,13 +84,11 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasi"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -108,53 +96,47 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "နံပါတ်"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်သူ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
msgstr "နောက်ဆုံးပြင်ဆင်ချိန်"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -183,11 +165,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -211,17 +188,31 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Urutan"
|
||||
msgstr "Sequence"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -230,10 +221,15 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
msgstr "အသုံးပြုသူ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
|
|
@ -243,13 +239,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -1,41 +1,31 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Jorunn D. Newth, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Innføring"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Tilgang avvist"
|
||||
|
||||
|
|
@ -88,7 +78,7 @@ msgstr "Opprettet av"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -97,28 +87,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasjon"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google-autentisering"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,30 +126,21 @@ msgstr "Sist oppdatert"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -186,11 +168,6 @@ msgstr "OAuth-bruker-ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2-tilbyder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -221,10 +198,24 @@ msgstr "Sekvens"
|
|||
msgid "Server uri"
|
||||
msgstr "Server-URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registrering er ikke tillatt i denne databasen."
|
||||
|
||||
|
|
@ -233,6 +224,11 @@ msgstr "Registrering er ikke tillatt i denne databasen."
|
|||
msgid "System Parameter"
|
||||
msgstr "System parameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -246,13 +242,18 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -263,3 +264,9 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "for eksempel 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "OAuth"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -37,28 +42,23 @@ msgid "Allow users to sign in with their Google account"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -68,22 +68,27 @@ msgid "Client ID:"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -93,32 +98,52 @@ msgid "Google Authentication"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -129,12 +154,12 @@ msgid "OAuth Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -149,12 +174,12 @@ msgid "Oauth"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -164,43 +189,45 @@ msgid "Providers"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -213,13 +240,3 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,47 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-21 05:26+0000\n"
|
||||
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/auth_oauth/"
|
||||
"nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- of -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Toegang geweigerd"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Toestaan dat gebruikers inloggen via Google."
|
||||
msgstr "Toestaan dat gebruikers inloggen via Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -77,7 +68,7 @@ msgstr "Client-ID:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
msgstr "Configuratie-instellingen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -92,17 +83,15 @@ msgstr "Aangemaakt op"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
msgstr "Data Eindpunt"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentatie"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -110,14 +99,17 @@ msgid "Google Authentication"
|
|||
msgstr "Google Authenticatie"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Heeft OAuth-toegangstoken"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,30 +126,21 @@ msgstr "Laatst bijgewerkt op"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Link tekst in login dialoog"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Log in met Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Login met Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Login met Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Label loginknop"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Ontbrekende subject-identiteit"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Opslag OAuth-toegangstoken"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -185,11 +168,6 @@ msgstr "OAuth User ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 provider"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -220,10 +198,24 @@ msgstr "Reeks"
|
|||
msgid "Server uri"
|
||||
msgstr "Server url"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Aanmelden met Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Aanmelden met Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Aanmelden met Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Aanmelden is niet toegestaan binnen deze database."
|
||||
|
||||
|
|
@ -232,6 +224,11 @@ msgstr "Aanmelden is niet toegestaan binnen deze database."
|
|||
msgid "System Parameter"
|
||||
msgstr "Systeemparameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,7 +242,6 @@ msgstr "GebruikersInfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -255,6 +251,12 @@ msgstr ""
|
|||
"aub een nieuwe uitnodiging en wees er zeker van om de link te volgen in je "
|
||||
"uitnodigings e-mail."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Je hebt geen toestemming om het toegangstoken te verwijderen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -265,3 +267,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "bijv. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- of -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Log in met Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Login met Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Login met Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,258 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
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"
|
||||
"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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Strebski <strebski@gmail.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
|
|
@ -11,37 +11,31 @@
|
|||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:41+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- lub -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Wprowadzenie"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Brak dostępu"
|
||||
msgstr "Odmowa dostępu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
|
|
@ -72,22 +66,22 @@ msgstr "Klasa CSS"
|
|||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Identyfikator klienta"
|
||||
msgstr "ID klienta"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "Identyfikator klienta:"
|
||||
msgstr "ID klienta:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
msgstr "Konfiguracja ustawień"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
|
|
@ -97,32 +91,33 @@ msgstr "Data utworzenia"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
msgstr "Punkt końcowy danych"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Uwierzytelnienie Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Ma token dostępu OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -139,30 +134,21 @@ msgstr "Data ostatniej aktualizacji"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Tekst linku w oknie logowania"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Zaloguj przez Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Zaloguj przez Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Zaloguj przez Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Tekst przycisku logowania"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Brak tożsamości podmiotu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token dostępu OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Sklep z tokenami dostępu OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -190,11 +176,6 @@ msgstr "Identyfikator użytkownika OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Dostawca OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -225,10 +206,24 @@ msgstr "Sekwencja"
|
|||
msgid "Server uri"
|
||||
msgstr "Uri serwera"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Zaloguj się z użyciem Facebooka"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Zaloguj się z użyciem Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Zaloguj się z użyciem Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Rejestrowanie się nie jest dozwolone na tej bazie danych."
|
||||
|
||||
|
|
@ -237,6 +232,11 @@ msgstr "Rejestrowanie się nie jest dozwolone na tej bazie danych."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parametr systemu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -250,7 +250,6 @@ msgstr "UserInfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -259,6 +258,12 @@ msgstr ""
|
|||
"Nie masz dostępu do tej bazy danych lub Twoje zaproszenie wygasło. Poproś o "
|
||||
"zaproszenie i pamiętaj, aby skorzystać z linku w mailu z zaproszeniem."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Nie masz uprawnień do usunięcia tokenu dostępu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -269,3 +274,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "np. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- lub -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Zaloguj przez Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Zaloguj przez Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Zaloguj przez Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token dostępu OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# cafonso <cafonso62@gmail.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
|
|
@ -9,35 +9,28 @@
|
|||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Pedro Castro Silva <pedrocs@exo.pt>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Pedro Castro Silva <pedrocs@exo.pt>, 2022\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:04+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ou -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Acesso Negado"
|
||||
|
||||
|
|
@ -59,7 +52,7 @@ msgstr "Permitido"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
msgstr "URL de autorização"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
|
|
@ -95,32 +88,33 @@ msgstr "Criado em"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
msgstr "Endpoint de dados"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentação"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autenticação Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,32 +129,23 @@ msgstr "Última Atualização em"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
msgstr "Texto do link na caixa de diálogo de login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Rótulo do botão de login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Código de Acesso OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -188,11 +173,6 @@ msgstr "Id de utilizador OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Provedor de OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -223,10 +203,24 @@ msgstr "Sequência"
|
|||
msgid "Server uri"
|
||||
msgstr "Uri do servidor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Não é permitido inscrever-se nesta base de dados."
|
||||
|
||||
|
|
@ -235,6 +229,11 @@ msgstr "Não é permitido inscrever-se nesta base de dados."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parâmetro de Sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -243,12 +242,11 @@ msgstr "Utilizador"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
msgstr "URL de UserInfo"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -257,6 +255,12 @@ msgstr ""
|
|||
"Não tem acesso a esta base de dados ou o convite expirou. Por favor peça um "
|
||||
"novo convite e siga o link que virá no e-mail de convite."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -267,3 +271,12 @@ msgstr "arco"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "Por exemplo, 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- ou -"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Código de Acesso OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,51 +1,43 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 10:02+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_oauth/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ou -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Acesso Negado"
|
||||
msgstr "Acesso negado"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Permite a usuários logar pelo Google"
|
||||
msgstr "Permitir que os usuários entrem com Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Permitir que os usuários acessem com sua conta do Google"
|
||||
msgstr "Permitir que os usuários iniciem a sessão com sua conta do Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -66,12 +58,12 @@ msgstr "Classe para o CSS"
|
|||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "ID do Cliente"
|
||||
msgstr "ID do cliente"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "ID do Cliente"
|
||||
msgstr "ID do cliente"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
|
|
@ -95,28 +87,29 @@ msgstr "Endpoint de dados"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentação"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autenticação Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Tem token de acesso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -131,78 +124,64 @@ msgstr "Última atualização em"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Texto do link na caixa de diálogo do Login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Login com Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Login com Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Login com Odoo.com"
|
||||
msgstr "Texto do link na caixa de diálogo de login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Rótulo do botão de login"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Falta de identidade do sujeito"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token para acesso OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Armazenamento de tokens de acesso OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Serviço OAuth"
|
||||
msgstr "Provedor OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "Serviços OAuth"
|
||||
msgstr "Provedores OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "UID do OAuth precisa ser único por Serviço"
|
||||
msgstr "UID do OAuth precisa ser exclusivo por provedor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "ID do Usuário OAuth"
|
||||
msgstr "ID do usuário OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "Serviço Oauth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
msgstr "Provedor Oauth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "user_id do serviço OAuth"
|
||||
msgstr "user_id do provedor OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Nome do Serviço"
|
||||
msgstr "Nome do provedor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Serviços"
|
||||
msgstr "Provedores"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -219,17 +198,36 @@ msgstr "Sequência"
|
|||
msgid "Server uri"
|
||||
msgstr "URI do servidor"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Login com Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Login com Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Login com Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "A inscrição não é permitida neste banco de dados."
|
||||
msgstr "Cadastro não permitido nesta base de dados."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Parâmetros do Sistema"
|
||||
msgstr "Parâmetros do sistema"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -244,15 +242,19 @@ msgstr "URL de UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Você não tem acesso a este banco de dados ou seu convite expirou. Por favor "
|
||||
"solicite um convite e tenha certeza de clicar no link recebido no convite "
|
||||
"enviado ao seu e-mail."
|
||||
"Você não tem acesso a esta base de dados ou seu convite expirou. Solicite um "
|
||||
"convite e certifique-se de clicar no link do convite recebido no seu e-mail."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Você não tem permissão para remover o token de acesso"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -263,4 +265,22 @@ msgstr "arquitetura"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "Ex: 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "ex: 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- ou -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Login com Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Login com Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Login com Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token para acesso OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,41 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-25 06:03+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- sau -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Ghid"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Acces interzis"
|
||||
|
||||
|
|
@ -93,32 +85,33 @@ msgstr "Creat în"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
msgstr "Punct final de date"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Documentație"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autentificare Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Are token de acces OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -135,30 +128,21 @@ msgstr "Ultima actualizare pe"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Legați textul în dialogul de conectare"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Autentificare cu Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Autentificare cu Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Autentificare cu Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Eticheta butonului de conectare"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Lipsește identitatea subiectului"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Simbol de Acces OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Stocare token de acces OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -186,11 +170,6 @@ msgstr "ID Utilizator OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Furnizor OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -209,7 +188,7 @@ msgstr "Furnizori"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Scope"
|
||||
msgstr "Scop"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
|
|
@ -221,10 +200,24 @@ msgstr "Secvență"
|
|||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Loghează-te cu Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Loghează-te cu Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Loghează-te cu Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Inregistrarea nu este permisă pe această bază de date."
|
||||
|
||||
|
|
@ -233,6 +226,11 @@ msgstr "Inregistrarea nu este permisă pe această bază de date."
|
|||
msgid "System Parameter"
|
||||
msgstr "Parametru de sistem"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorial"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -246,7 +244,6 @@ msgstr "URL-ul de informații despre utilizator"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -256,6 +253,12 @@ msgstr ""
|
|||
"rugăm să cereți o invitație și asigurați-vă că urmați link-ul din e-mail de "
|
||||
"invitație."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Nu aveți permisiuni pentru a elimina token-ul de acces"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -266,3 +269,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- sau -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Autentificare cu Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Autentificare cu Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Autentificare cu Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Simbol de Acces OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,62 +1,49 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Gennady Marchenko <gennadym@gmail.com>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Collex100, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Collex100, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-05 18:08+0000\n"
|
||||
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- или -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Руководство"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Доступ запрещён"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Разрешить вход при помощи учетной записи Google"
|
||||
msgstr "Разрешите пользователям входить в систему с помощью Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Разрешить пользователям входить с помощью аккаунта Google"
|
||||
msgstr "Разрешить пользователям входить в свою учетную запись Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "Разрешено"
|
||||
msgstr "Разрешить"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
|
|
@ -66,7 +53,7 @@ msgstr "URL-адрес авторизации"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "Класс CSS"
|
||||
msgstr "CSS класс"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
|
|
@ -82,17 +69,17 @@ msgstr "ID клиента:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
msgstr "Параметры конфигурации"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
msgstr "Создано:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
msgstr "Дата создания:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -101,73 +88,65 @@ msgstr "Конечная точка данных"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
msgid "Google Authentication"
|
||||
msgstr "Аутентификация Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google аутентификация"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Имеет токен доступа OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
msgstr "Последнее обновление:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
msgstr "Дата последнего обновления:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Текст ссылки в диалоге входа"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Войти через Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Войти через Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Войти через Odoo.com"
|
||||
msgstr "Текст ссылки в диалоге входа в систему"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Ярлык кнопки входа в систему"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Отсутствует идентификатор субъекта"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Токен доступа OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Хранилище токенов доступа OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Провайдер OAuth"
|
||||
msgstr "Поставщик OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
|
|
@ -178,32 +157,27 @@ msgstr "Провайдеры OAuth"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID должен быть уникальным для каждого провайдера"
|
||||
msgstr "Идентификатор OAuth UID должен быть уникальным для каждого провайдера"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "Идентификатор клиента OAuth"
|
||||
msgstr "Идентификатор пользователя OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "Провайдер OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth Провайдер user_id"
|
||||
msgstr "Oauth Provider user_id"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Имя провайдера"
|
||||
msgstr "Имя поставщика услуг"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
|
|
@ -213,29 +187,48 @@ msgstr "Провайдеры"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Область доступа"
|
||||
msgstr "Сфера"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Нумерация"
|
||||
msgstr "Последовательность"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Сервер uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Войти через Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Войти с помощью Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Войти с помощью Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Для этой базы данных регистрация запрещена."
|
||||
msgstr "Регистрация в этой базе данных запрещена."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Системные параметры"
|
||||
msgstr "Параметр Системы"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Руководство"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -250,23 +243,49 @@ msgstr "URL UserInfo"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"У вас нет права доступа к этой базе данных или ваше приглашение истекло. "
|
||||
"Пожалуйста, запросите новое приглашение и обязательно используйте ссылку из "
|
||||
"письма с приглашением."
|
||||
"У вас нет доступа к этой базе данных или срок действия вашего приглашения "
|
||||
"истек. Пожалуйста, запросите приглашение и обязательно перейдите по ссылке в "
|
||||
"письме с приглашением."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "У вас нет прав для удаления токена доступа"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "архитектура"
|
||||
msgstr "arch"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "например, 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- или -"
|
||||
|
||||
#~ msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
#~ msgstr "<i class=\"oi oi-fw oi-arrow-right\"/>Учебное пособие"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Войти с Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Войти через Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Войдите в систему с помощью Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,28 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- alebo -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Príručka"
|
||||
"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_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Prístup zamietnutý"
|
||||
|
||||
|
|
@ -94,28 +84,29 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentácia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autentifikácia Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -132,30 +123,21 @@ msgstr "Naposledy upravované"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Text odkazu v dialógovom okne prihlásenia"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Prihlásiť sa cez Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Prihlásiť sa cez Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prihlásiť sa cez Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth prístupový token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -183,11 +165,6 @@ msgstr "OAuth ID používateľa"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 poskytovateľ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth "
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -218,10 +195,24 @@ msgstr "Postupnosť"
|
|||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registrácia nie je povolená v tejto databáze."
|
||||
|
||||
|
|
@ -230,6 +221,11 @@ msgstr "Registrácia nie je povolená v tejto databáze."
|
|||
msgid "System Parameter"
|
||||
msgstr "Systémový parameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -243,7 +239,6 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -253,6 +248,12 @@ msgstr ""
|
|||
"požiadajte o pozvánku a uistite sa že použijete odkaz vo vašom pozývacom "
|
||||
"emaile."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -263,3 +264,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "napr. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- alebo -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Prihlásiť sa cez Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Prihlásiť sa cez Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Prihlásiť sa cez Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth prístupový token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth "
|
||||
|
|
|
|||
|
|
@ -1,43 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/sl/>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ali-"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Dostop zavrnjen"
|
||||
|
||||
|
|
@ -99,28 +90,29 @@ msgstr "Končna točka podatkov"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Googlova avtentikacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Ima žeton za dostop OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -137,30 +129,21 @@ msgstr "Zadnjič posodobljeno"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Besedilo povezave v pogovornem oknu za prijavo"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Prijava s Facebookom"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Prijava z Googlom"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prijava z Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Oznaka gumba za prijavo"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Manjka identiteta subjekta"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Shramba žetonov za dostop OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -188,11 +171,6 @@ msgstr "OAuth User ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 provider"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -223,10 +201,24 @@ msgstr "Zaporedje"
|
|||
msgid "Server uri"
|
||||
msgstr "URL strežnika"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Prijava v to podatkovno bazo ni dovoljena."
|
||||
|
||||
|
|
@ -235,6 +227,11 @@ msgstr "Prijava v to podatkovno bazo ni dovoljena."
|
|||
msgid "System Parameter"
|
||||
msgstr "Sistemski parameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Vadnica"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -248,7 +245,6 @@ msgstr "URL uporabniških podatkov"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -257,6 +253,12 @@ msgstr ""
|
|||
"Do te podatkovne baze nimate dostopa ali pa je vaše vabilo poteklo. Prosite "
|
||||
"za vabilo in sledite povezavi v e-poštnem vabilu."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Nimate dovoljenj za odstranitev žetona za dostop."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -267,3 +269,9 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "npr. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Access Token"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,24 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -89,27 +80,28 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -127,29 +119,20 @@ msgstr ""
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
@ -178,11 +161,6 @@ msgstr ""
|
|||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -214,8 +192,23 @@ msgid "Server uri"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -224,6 +217,11 @@ msgstr ""
|
|||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -235,14 +233,20 @@ msgid "UserInfo URL"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
|
|||
|
|
@ -1,266 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 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: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022\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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- ili -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Uputstvo"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Dozvoli korisnicima da se prijave pomoću Google-a"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Dozvoli korisnicima da se prijave pomoguću svog Google naloga"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr "Dozvoljeno"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "URL za utorizaciju"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "CSS class"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "ID klijenta"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "ID klijenta:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google autentikacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Ubaci tekstualni link u dijalogu za Prijavljivanje"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Prijave se pomoću Facebook-a"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Prijavi se pomoću Google-a"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Prijavi se pomoću Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Naslov dugmeta za prijavu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth token pristupa"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "OAuth Provajder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "OAuth Provajderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID mora biti jedinstven po provajderu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "OAuth korisnički ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 provajder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth Provajder user_id"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr "Naziv provajdera"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Provajderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Obim"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Niz"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Url servera"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registracija nije dozvoljena na ovoj bazi podataka."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Sistemski parametar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "UserInfo URL"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Nemate pristup ovoj bazi podataka ili je vaša pozivinica istekla. Molimo vas"
|
||||
" zatražite pozivnicu i obavezno pratite link u emailu poziva."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "arch"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "npr. 1234-xyz.apps.googleusercontent.com"
|
||||
|
|
@ -1,231 +1,287 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-24 09:00+0000\n"
|
||||
"PO-Revision-Date: 2017-10-24 09:00+0000\n"
|
||||
"Last-Translator: Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:04+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/auth_oauth/sr_Latn/>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:100
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
msgstr "Dozvoli korisnicima da se prijave pomoću Google-a"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
msgstr "Dozvoli korisnicima da se prijave pomoguću svog Google naloga"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_enabled
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
msgstr "Dozvoljeno"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_auth_endpoint
|
||||
msgid "Authentication URL"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "URL za utorizaciju"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_body
|
||||
msgid "Body"
|
||||
msgstr "Tijelo"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_css_class
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
msgstr "CSS class"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_auth_oauth_google_client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
msgstr "ID klijenta"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
msgstr "ID klijenta:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_uid
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_data_endpoint
|
||||
msgid "Data URL"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Data Endpoint"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google autentikacija"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Ubaci tekstualni link u dijalogu za Prijavljivanje"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Naslov dugmeta za prijavu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_provider_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
msgstr "OAuth Provajder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
msgstr "OAuth Provajderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: sql_constraint:res.users:0
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
msgstr "OAuth UID mora biti jedinstven po provajderu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
msgstr "OAuth korisnički ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
msgstr "OAuth2 provajder"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users_oauth_uid
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
msgstr "Oauth Provajder user_id"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
msgstr "Naziv provajdera"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
msgstr "Provajderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_scope
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "Obim"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_sequence
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Prioritet"
|
||||
msgstr "Niz"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings_server_uri_google
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Url servera"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:98
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Registracija nije dozvoljena na ovoj bazi podataka."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Sistemski parametar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Tutorijal"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_validation_endpoint
|
||||
msgid "Validation URL"
|
||||
msgstr ""
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "UserInfo URL"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:102
|
||||
#, python-format
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Nemate pristup ovoj bazi podataka ili je vaša pozivinica istekla. Molimo vas "
|
||||
"zatražite pozivnicu i obavezno pratite link u emailu poziva."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
msgstr "arch"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
msgstr "npr. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "ir.config_parameter"
|
||||
msgstr "ir.config_parameter"
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- ili -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Prijave se pomoću Facebook-a"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Prijavi se pomoću Google-a"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Prijavi se pomoću Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth token pristupa"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
|
|
@ -12,48 +12,40 @@
|
|||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Lasse L, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Lasse L, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-03-06 17:44+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- eller -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Handledning"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.16.1\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Åtkomst nekad"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr "Tillåt användare logga in med Google"
|
||||
msgstr "Låt användare logga in med Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "Tillåt användare att logga in med sitt Google-konto"
|
||||
msgstr "Låt användare logga in med sitt Google-konto"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -63,7 +55,7 @@ msgstr "Tillåten"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr "URL för auktorisering"
|
||||
msgstr "Auktoriserings-URL"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
|
|
@ -74,12 +66,12 @@ msgstr "CSS-klass"
|
|||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr "Klient-ID"
|
||||
msgstr "Kundnummer"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr "Klient-ID:"
|
||||
msgstr "Kundnummer:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
|
|
@ -94,38 +86,39 @@ msgstr "Skapad av"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Slutpunkt för data"
|
||||
msgstr "Datans slutdestination"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
msgid "Google Authentication"
|
||||
msgstr "Autentisering med Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google-autentisering"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Har OAuth åtkomst-token"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -134,37 +127,28 @@ msgstr "Senast uppdaterad av"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
msgstr "Senast uppdaterad den"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Länktext i inloggningsdialog"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Logga in med Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Logga in med Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Logga in med Odoo.com"
|
||||
msgstr "Länkens text visas i inloggningsfönstret"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Etikett för inloggningsknapp"
|
||||
msgstr "Inloggningsknappens etikett"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Identifiering saknas"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth åtkomstpollett"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth-butik för att köpa åtkomst-tokens"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -180,7 +164,7 @@ msgstr "OAuth-leverantörer"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr "OAuth UID måste vara unikt per utgivare"
|
||||
msgstr "OAuth UID måste vara unikt per leverantör"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
|
|
@ -192,15 +176,10 @@ msgstr "OAuth-användar-ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2-leverantör"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Oauth utgivare-user_id"
|
||||
msgstr "Oauth användar_id för leverantören"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -215,7 +194,7 @@ msgstr "Leverantörer"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr "Omfattning"
|
||||
msgstr "Omfång"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
|
|
@ -225,20 +204,39 @@ msgstr "Sekvens"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Server uri"
|
||||
msgstr "Server-URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Logga in med Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Logga in med Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Logga in med Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Anslutning är inte tillåten i denna databas."
|
||||
msgstr "Det är inte tillåtet att registrera sig på databasen."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Systemparameter"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Instruktioner"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -247,28 +245,42 @@ msgstr "Användare"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "URL för användarinformation"
|
||||
msgstr "Användarinformationens URL"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Du saknar tillgång till denna databas eller så har din inbjudan gått ut. "
|
||||
"Vänligen be om en ny inbjudan och försäkra dig om att du använder länken i "
|
||||
"meddelandet."
|
||||
"Du saknar åtkomstbehörighet till denna databas eller så har din inbjudan "
|
||||
"gått ut. Vänligen be om en ny inbjudan och använd länken i meddelandet för "
|
||||
"att få åtkomst."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Du har inte behörighet att ta bort denna åtkomst-token"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "Arkitektur"
|
||||
msgstr "arch"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "t.ex. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- eller -"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth åtkomstpollett"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,255 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+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_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
|
|
@ -1,18 +1,20 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"POT-Creation-Date: 2023-05-16 13:49+0000\n"
|
||||
"PO-Revision-Date: 2016-02-05 10:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: 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_oauth
|
||||
|
|
@ -22,12 +24,12 @@ msgstr ""
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgid "<i class=\"oi oi-fw oi-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -75,12 +77,14 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "உருவாக்கியவர்"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
"உருவாக்கப்பட்ட \n"
|
||||
"தேதி"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -90,12 +94,7 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -105,22 +104,17 @@ msgstr ""
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
|
|
@ -214,8 +208,8 @@ msgid "Server uri"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -235,12 +229,9 @@ msgid "UserInfo URL"
|
|||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgid "You do not have access to this database or your invitation has expired. Please ask for an invitation and be sure to follow the link in your invitation email."
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
|
|
|
|||
|
|
@ -1,40 +1,31 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/auth_oauth/"
|
||||
"th/>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- หรือ -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>บทเรียน"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "การเข้าถึงถูกปฏิเสธ"
|
||||
|
||||
|
|
@ -61,7 +52,7 @@ msgstr "URL การอนุญาต"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "คลาส CSS "
|
||||
msgstr "คลาส CSS"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
|
|
@ -96,28 +87,29 @@ msgstr "จุดสิ้นสุดข้อมูล"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "เอกสารประกอบ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "การรับรองความถูกต้องของ Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,30 +126,21 @@ msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "ลิงก์ข้อความในกล่องล็อกอิน"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "เข้าสู่ระบบด้วย Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "เข้าสู่ระบบด้วย Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "เข้าสู่ระบบด้วย Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "ป้ายปุ่มล็อกอิน"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "โทเคนการเข้าถึง OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -185,11 +168,6 @@ msgstr "ไอดีผู้ใช้ OAuth"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "ผู้ให้บริการ OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -220,10 +198,24 @@ msgstr "ลำดับ"
|
|||
msgid "Server uri"
|
||||
msgstr "เซิร์ฟเวอร์ uri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "ไม่อนุญาตให้ลงทะเบียนในฐานข้อมูลนี้"
|
||||
|
||||
|
|
@ -232,6 +224,11 @@ msgstr "ไม่อนุญาตให้ลงทะเบียนในฐ
|
|||
msgid "System Parameter"
|
||||
msgstr "พารามิเตอร์ของระบบ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "บทช่วยสอน"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,7 +242,6 @@ msgstr "URL ข้อมูลผู้ใช้"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -254,13 +250,37 @@ msgstr ""
|
|||
"คุณไม่มีสิทธิ์เข้าถึงฐานข้อมูลนี้ หรือคำเชิญของคุณหมดอายุแล้ว "
|
||||
"โปรดขอคำเชิญและอย่าลืมไปตามลิงก์ในอีเมลคำเชิญของคุณ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
msgid "arch"
|
||||
msgstr "arch"
|
||||
msgstr "โค้ง"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "เช่น 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- หรือ -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "เข้าสู่ระบบด้วย Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "เข้าสู่ระบบด้วย Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "เข้าสู่ระบบด้วย Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "โทเคนการเข้าถึง OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
|
|
@ -14,35 +14,28 @@
|
|||
# Martin Trigaux, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Halil, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Halil, 2022\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:44+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- yada -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Öğretici"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Erişim Engellendi"
|
||||
|
||||
|
|
@ -90,12 +83,12 @@ msgstr "Yapılandırma Ayarları"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
msgstr "Tarafından oluşturuldu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -104,13 +97,11 @@ msgstr "Veri Uç Noktası"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Belgeleme"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
|
|
@ -118,14 +109,17 @@ msgid "Google Authentication"
|
|||
msgstr "Google Kimlik Doğurlama"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "OAuth Erişim Belirteci Var"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -142,30 +136,21 @@ msgstr "Son Güncelleme"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Giriş İletişim Kutusunda metin bağlantısı"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Facebook ile giriş"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Google ile giriş yap"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Odoo.com ile giriş yapın"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Giriş butonu etiketi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Kayıp özne kimliği"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth Erişim Jetonu"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth Erişim Belirteci Deposu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -193,11 +178,6 @@ msgstr "OAuth Kullanıcı ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2 Sağlayıcı"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -221,17 +201,31 @@ msgstr "Kapsam"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sıra"
|
||||
msgstr "Sıralama"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "Sunucu Adresi (URL)"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Facebook ile oturum açın"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Google ile oturum açın"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Odoo.com ile oturum açın"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Bu veritabanına kayıt olmaya izin verilmez."
|
||||
|
||||
|
|
@ -240,6 +234,11 @@ msgstr "Bu veritabanına kayıt olmaya izin verilmez."
|
|||
msgid "System Parameter"
|
||||
msgstr "Sistem Parametresi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Eğitim"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -253,7 +252,6 @@ msgstr "UserInfo URL'si"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -262,6 +260,12 @@ msgstr ""
|
|||
"Bu veritabanına giriş izniniz yok ya da davetinizin süresi dolmuş. Lütfen "
|
||||
"bir davetiye isteyin ve eposta davetiyenizdeki bağlantıyı izleyin."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Erişim belirtecini kaldırma izniniz yok"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -272,3 +276,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "örn. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- yada -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Facebook ile giriş"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Google ile giriş yap"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Odoo.com ile giriş yapın"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth Erişim Jetonu"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:04+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- або -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Туторіал"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "У доступі відмовлено"
|
||||
|
||||
|
|
@ -96,28 +90,29 @@ msgstr "Кінцева точка даних"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Документація"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google аутентифікація"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -134,30 +129,21 @@ msgstr "Останнє оновлення"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "Текст посилання у діалозі входу"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Зайти через Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Зайдіть через Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Зайдіть через Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Мітка кнопки входу"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Токен доступу OAuth"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -185,11 +171,6 @@ msgstr "OAuth ID користувача"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "Провайдер OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -220,10 +201,24 @@ msgstr "Послідовність"
|
|||
msgid "Server uri"
|
||||
msgstr "uri сервера"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Вхід не дозволено у цій базі даних."
|
||||
|
||||
|
|
@ -232,6 +227,11 @@ msgstr "Вхід не дозволено у цій базі даних."
|
|||
msgid "System Parameter"
|
||||
msgstr "Параметр системи"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Туторіал"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -245,7 +245,6 @@ msgstr "UserInfo URL"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -255,6 +254,12 @@ msgstr ""
|
|||
"минув. Будь ласка, запитайте запрошення та обов'язково перейдіть за "
|
||||
"посиланням у своєму електронному листі запрошення."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -265,3 +270,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- або -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Зайти через Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Зайдіть через Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Зайдіть через Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Токен доступу OAuth"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,263 +1,315 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
# Nikhil Krishnan, 2023
|
||||
#
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nikhil Krishnan, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Access Denied"
|
||||
msgstr "അക്സസ്സ് തടയപ്പെട്ടു"
|
||||
msgstr "Ruxsat berilmadi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
#, fuzzy
|
||||
msgid "Allow users to sign in with Google"
|
||||
msgstr ""
|
||||
msgstr "Foydalanuvchilarga Google orqali kirishga ruxsat berish"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr ""
|
||||
msgstr "Foydalanuvchilarga Google hisoblari orqali kirishga ruxsat berish"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
#, fuzzy
|
||||
msgid "Allowed"
|
||||
msgstr ""
|
||||
msgstr "Ruxsat etilgan"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint
|
||||
#, fuzzy
|
||||
msgid "Authorization URL"
|
||||
msgstr ""
|
||||
msgstr "Avtorizatsiya URL manzili"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
#, fuzzy
|
||||
msgid "CSS class"
|
||||
msgstr ""
|
||||
msgstr "CSS sinfi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_client_id
|
||||
#, fuzzy
|
||||
msgid "Client ID"
|
||||
msgstr "ഉപഭോക്തൃ ഐഡി"
|
||||
msgstr "Mijoz identifikatori"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Client ID:"
|
||||
msgstr ""
|
||||
msgstr "Mijoz identifikatori:"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
msgstr "Konfiguratsiya sozlamalari"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
#, fuzzy
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
msgstr "Yaratuvchi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
#, fuzzy
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
msgstr "Yaratilgan sana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
#, fuzzy
|
||||
msgid "Data Endpoint"
|
||||
msgstr ""
|
||||
msgstr "Ma'lumotlar yakuniy nuqtasi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "ഡോക്യൂമെന്റഷന് "
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Google Authentication"
|
||||
msgstr ""
|
||||
msgstr "Google autentifikatsiyasi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
#, fuzzy
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "OAuth kirish tokeni mavjud"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
msgstr "Identifikator"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
#, fuzzy
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
msgstr "Oxirgi yangilovchi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
#, fuzzy
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
msgstr "Oxirgi yangilangan sana"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
#, fuzzy
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr ""
|
||||
msgstr "Kirish oynasidagi havola matni"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
#, fuzzy
|
||||
msgid "Login button label"
|
||||
msgstr ""
|
||||
msgstr "Kirish tugmasi yorlig‘i"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
#, fuzzy
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Mavzu identifikatori yo‘q"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth kirish tokenlari ombori"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
#, fuzzy
|
||||
msgid "OAuth Provider"
|
||||
msgstr ""
|
||||
msgstr "OAuth provayderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "OAuth Providers"
|
||||
msgstr ""
|
||||
msgstr "OAuth provayderlar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
#, fuzzy
|
||||
msgid "OAuth UID must be unique per provider"
|
||||
msgstr ""
|
||||
msgstr "OAuth UID har bir provayder uchun noyob bo‘lishi kerak"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
#, fuzzy
|
||||
msgid "OAuth User ID"
|
||||
msgstr ""
|
||||
msgstr "OAuth foydalanuvchi identifikatori"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
#, fuzzy
|
||||
msgid "OAuth2 provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr ""
|
||||
msgstr "OAuth2 provayderi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
#, fuzzy
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr ""
|
||||
msgstr "OAuth provayder foydalanuvchi identifikatori"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
#, fuzzy
|
||||
msgid "Provider name"
|
||||
msgstr ""
|
||||
msgstr "Provayder nomi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
#, fuzzy
|
||||
msgid "Providers"
|
||||
msgstr ""
|
||||
msgstr "Provayderlar"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
#, fuzzy
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
msgstr "Qamrov"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
#, fuzzy
|
||||
msgid "Sequence"
|
||||
msgstr "സീക്വൻസ് "
|
||||
msgstr "Ketma-ketlik"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
#, fuzzy
|
||||
msgid "Server uri"
|
||||
msgstr ""
|
||||
msgstr "Server manzili"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
#, fuzzy
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Facebook orqali kirish"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
#, fuzzy
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Google orqali kirish"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
#, fuzzy
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "Odoo.com orqali kirish"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr ""
|
||||
msgstr "Ushbu ma'lumotlar bazasida ro‘yxatdan o‘tishga ruxsat berilmagan."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
#, fuzzy
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
||||
msgstr "Tizim parametri"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Tutorial"
|
||||
msgstr "Qo‘llanma"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
#, fuzzy
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
msgstr "Foydalanuvchi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
#, fuzzy
|
||||
msgid "UserInfo URL"
|
||||
msgstr ""
|
||||
msgstr "Foydalanuvchi ma'lumotlari URL manzili"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Siz ushbu ma'lumotlar bazasiga kira olmaysiz yoki taklifingiz muddati "
|
||||
"tugagan. Iltimos, taklif so‘rang va taklifnoma xatingizdagi havolani albatta "
|
||||
"bosing."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
#, fuzzy
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Kirish tokenini o‘chirish uchun sizda ruxsat yo‘q"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
#, fuzzy
|
||||
msgid "arch"
|
||||
msgstr ""
|
||||
msgstr "Arxitektura"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr ""
|
||||
msgstr "Masalan: 1234-xyz.apps.googleusercontent.com"
|
||||
|
|
@ -1,41 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
# Thi Huong Nguyen, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:38+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"auth_oauth/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- hoặc -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>Hướng dẫn"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "Truy cập bị Từ chối"
|
||||
msgstr "Truy cập bị từ chối"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__auth_oauth_google_enabled
|
||||
|
|
@ -60,7 +52,7 @@ msgstr "URL Ủy quyền"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class
|
||||
msgid "CSS class"
|
||||
msgstr "bộ chọn class trong CSS"
|
||||
msgstr "Bộ chọn class trong CSS"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__client_id
|
||||
|
|
@ -76,7 +68,7 @@ msgstr "ID máy khách:"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt Cấu hình"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
|
|
@ -91,83 +83,75 @@ msgstr "Được tạo vào"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
msgid "Data Endpoint"
|
||||
msgstr "Điểm cuối Dữ liệu"
|
||||
msgstr "Endpoint dữ liệu"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên Hiển thị"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "Tài liệu"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Xác thực Google "
|
||||
msgstr "Xác thực Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "Có token truy cập OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Chỉnh sửa Lần cuối vào"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật Lần cuối bởi"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật Lần cuối vào"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "Văn bản liên kết trong Hộp thoại Đăng nhập"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Đăng nhập với Facebook"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "Đăng nhập với Google"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Đăng nhập với Odoo.com"
|
||||
msgstr "Văn bản liên kết trong Hộp thoại đăng nhập"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "Nhãn nút đăng nhập"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "Thiếu danh tính chủ thể"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "Token Truy cập OAuth "
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "Lưu trữ token truy cập OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
msgid "OAuth Provider"
|
||||
msgstr "Nhà cung cấp OAuth "
|
||||
msgstr "Nhà cung cấp OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "OAuth Providers"
|
||||
msgstr "Các nhà cung cấp OAuth "
|
||||
msgstr "Nhà cung cấp OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.constraint,message:auth_oauth.constraint_res_users_uniq_users_oauth_provider_oauth_uid
|
||||
|
|
@ -177,22 +161,17 @@ msgstr "Mỗi nhà cung cấp có một UID OAuth riêng."
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "OAuth User ID"
|
||||
msgstr "ID Người dùng OAuth "
|
||||
msgstr "ID người dùng OAuth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
|
||||
msgid "OAuth2 provider"
|
||||
msgstr "Nhà cung cấp OAuth2"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
msgstr "Tên người dùng của Nhà cung cấp Oauth"
|
||||
msgstr "user_id của nhà cung cấp Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name
|
||||
|
|
@ -202,7 +181,7 @@ msgstr "Tên nhà cung cấp"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
|
||||
msgid "Providers"
|
||||
msgstr "Các nhà cung cấp "
|
||||
msgstr "Nhà cung cấp"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope
|
||||
|
|
@ -219,17 +198,36 @@ msgstr "Trình tự"
|
|||
msgid "Server uri"
|
||||
msgstr "URL máy chủ"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "Không được phép đăng ký trên cơ sở dữ liệu này."
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Tham số Hệ thống"
|
||||
msgstr "Tham số hệ thống"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "Hướng dẫn"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
|
|
@ -239,20 +237,25 @@ msgstr "Người dùng"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint
|
||||
msgid "UserInfo URL"
|
||||
msgstr "URL Thông tin người dùng"
|
||||
msgstr "URL thông tin người dùng"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr ""
|
||||
"Bạn không có quyền truy cập vào cơ sở dữ liệu này hoặc lời mời của bạn đã "
|
||||
"hết hạn. Vui lòng yêu cầu một lời mời và nhấp vào liên kết trong email mời "
|
||||
"của bạn."
|
||||
"hết hạn. Vui lòng yêu cầu một lời mời mới và nhấp vào liên kết trong email "
|
||||
"mời của bạn."
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "Bạn không có quyền xóa token truy cập"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -264,3 +267,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "VD: 1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- hoặc -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Đăng nhập với Facebook"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "Đăng nhập với Google"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Đăng nhập với Odoo.com"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "Token Truy cập OAuth "
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
# * auth_oauth
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\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: Jeffery CHEN <jeffery9@gmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/auth_oauth/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- 或 -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>教程"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "访问被拒绝"
|
||||
|
||||
|
|
@ -45,7 +36,7 @@ msgstr "允许用户通过google登录"
|
|||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Allow users to sign in with their Google account"
|
||||
msgstr "允许用户使用其 Google 账户登录"
|
||||
msgstr "允许用户使用其 谷歌 账户登录"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled
|
||||
|
|
@ -86,7 +77,7 @@ msgstr "创建人"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint
|
||||
|
|
@ -95,29 +86,30 @@ msgstr "数据终结点"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "文档"
|
||||
msgid "Google Authentication"
|
||||
msgstr "谷歌 身份验证"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google 身份验证"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "有 OAuth 访问令牌"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
msgid "Last Updated by"
|
||||
|
|
@ -126,37 +118,28 @@ msgstr "最后更新人"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Link text in Login Dialog"
|
||||
msgstr "登陆框链接文本"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "Facebook登录"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "谷歌登陆"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "Odoo官方登陆"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "登录按钮标签"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "缺漏主体身份"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth 访问令牌"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth 访问令牌商店"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -184,11 +167,6 @@ msgstr "OAuth 用户ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2服务商"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -212,17 +190,31 @@ msgstr "作用范围"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "序号"
|
||||
msgstr "序列"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "服务器URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "Facebook 登录"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "Google 登录"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "登录 Odoo.com"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "此数据库不允许注册."
|
||||
|
||||
|
|
@ -231,6 +223,11 @@ msgstr "此数据库不允许注册."
|
|||
msgid "System Parameter"
|
||||
msgstr "系统参数"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "教程"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,12 +241,19 @@ msgstr "用户信息网址"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
"invitation email."
|
||||
msgstr "您无权访问此数据库或者您的邀请已经过期.请申请一个新的邀请并在您的邀请邮件中确认。"
|
||||
msgstr ""
|
||||
"您无权访问此数据库或者您的邀请已经过期.请申请一个新的邀请并在您的邀请邮件中确"
|
||||
"认。"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "您没有权限删除访问令牌"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
|
|
@ -261,3 +265,21 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "例如:1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "- or -"
|
||||
#~ msgstr "- 或 -"
|
||||
|
||||
#~ msgid "Log in with Facebook"
|
||||
#~ msgstr "Facebook登录"
|
||||
|
||||
#~ msgid "Log in with Google"
|
||||
#~ msgstr "谷歌登陆"
|
||||
|
||||
#~ msgid "Log in with Odoo.com"
|
||||
#~ msgstr "Odoo官方登陆"
|
||||
|
||||
#~ msgid "OAuth Access Token"
|
||||
#~ msgstr "OAuth 访问令牌"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,29 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_oauth
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-05-06 12:03+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/"
|
||||
"zh_TW/)\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.providers
|
||||
msgid "- or -"
|
||||
msgstr "- 或 -"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial"
|
||||
msgstr "<i class=\"fa fa-fw fa-arrow-right\"/>教學"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Access Denied"
|
||||
msgstr "存取被拒絕"
|
||||
|
||||
|
|
@ -81,7 +71,7 @@ msgstr "配置設定"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
msgstr "建立人員"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date
|
||||
|
|
@ -95,28 +85,29 @@ msgstr "數據終端點"
|
|||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Documentation"
|
||||
msgstr "系統使用說明"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Google Authentication"
|
||||
msgstr "Google認證"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__has_oauth_access_token
|
||||
msgid "Has OAuth Access Token"
|
||||
msgstr "有 OAuth 存取權杖"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_ir_config_parameter__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid
|
||||
|
|
@ -133,30 +124,21 @@ msgstr "最後更新於"
|
|||
msgid "Link text in Login Dialog"
|
||||
msgstr "登入連結的完整內容"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Log in with Facebook"
|
||||
msgstr "以 Facebook 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Log in with Google"
|
||||
msgstr "使用 Google 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Log in with Odoo.com"
|
||||
msgstr "使用 odoo帳號 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body
|
||||
msgid "Login button label"
|
||||
msgstr "登入按鈕標籤"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "Missing subject identity"
|
||||
msgstr "缺漏主體身份"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token
|
||||
msgid "OAuth Access Token"
|
||||
msgstr "OAuth 存取權杖(token)"
|
||||
msgid "OAuth Access Token Store"
|
||||
msgstr "OAuth 存取權杖儲存"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id
|
||||
|
|
@ -184,11 +166,6 @@ msgstr "OAuth 使用者ID"
|
|||
msgid "OAuth2 provider"
|
||||
msgstr "OAuth2服務商"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_users_form
|
||||
msgid "Oauth"
|
||||
msgstr "Oauth"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid
|
||||
msgid "Oauth Provider user_id"
|
||||
|
|
@ -212,17 +189,31 @@ msgstr "範圍"
|
|||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "序號"
|
||||
msgstr "序列號"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google
|
||||
msgid "Server uri"
|
||||
msgstr "伺服器URI"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_facebook
|
||||
msgid "Sign in with Facebook"
|
||||
msgstr "使用 Facebook 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_google
|
||||
msgid "Sign in with Google"
|
||||
msgstr "使用 Google 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:auth.oauth.provider,body:auth_oauth.provider_openerp
|
||||
msgid "Sign in with Odoo.com"
|
||||
msgstr "使用 Odoo.com 登入"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Sign up is not allowed on this database."
|
||||
msgstr "此資料庫不允許註冊"
|
||||
|
||||
|
|
@ -231,6 +222,11 @@ msgstr "此資料庫不允許註冊"
|
|||
msgid "System Parameter"
|
||||
msgstr "系統參數"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "Tutorial"
|
||||
msgstr "教學"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model:ir.model,name:auth_oauth.model_res_users
|
||||
msgid "User"
|
||||
|
|
@ -244,7 +240,6 @@ msgstr "用戶資料網址"
|
|||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You do not have access to this database or your invitation has expired. "
|
||||
"Please ask for an invitation and be sure to follow the link in your "
|
||||
|
|
@ -253,6 +248,12 @@ msgstr ""
|
|||
"您無權存取此資料庫或者您的邀請已經過期.\n"
|
||||
"請申請一個新的邀請並在您的邀請信件中確認。"
|
||||
|
||||
#. module: auth_oauth
|
||||
#. odoo-python
|
||||
#: code:addons/auth_oauth/models/res_users.py:0
|
||||
msgid "You do not have permissions to remove the access token"
|
||||
msgstr "你沒有權限移除存取權杖"
|
||||
|
||||
#. module: auth_oauth
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_form
|
||||
#: model_terms:ir.ui.view,arch_db:auth_oauth.view_oauth_provider_tree
|
||||
|
|
@ -263,3 +264,9 @@ msgstr "arch"
|
|||
#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form
|
||||
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
|
||||
msgstr "例如:1234-xyz.apps.googleusercontent.com"
|
||||
|
||||
#~ msgid "Oauth"
|
||||
#~ msgstr "Oauth"
|
||||
|
||||
#~ msgid "Remove Token"
|
||||
#~ msgstr "移除權杖"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
from odoo import fields, models
|
||||
|
||||
|
||||
class AuthOAuthProvider(models.Model):
|
||||
class AuthOauthProvider(models.Model):
|
||||
"""Class defining the configuration values of an OAuth2 provider"""
|
||||
|
||||
_name = 'auth.oauth.provider'
|
||||
|
|
|
|||
|
|
@ -4,13 +4,13 @@
|
|||
from odoo import models
|
||||
|
||||
|
||||
class IrConfigParameter(models.Model):
|
||||
class IrConfig_Parameter(models.Model):
|
||||
_inherit = 'ir.config_parameter'
|
||||
|
||||
def init(self, force=False):
|
||||
super(IrConfigParameter, self).init(force=force)
|
||||
super().init(force=force)
|
||||
if force:
|
||||
oauth_oe = self.env.ref('auth_oauth.provider_openerp')
|
||||
oauth_oe = self.env.ref('auth_oauth.provider_openerp', raise_if_not_found=False)
|
||||
if not oauth_oe:
|
||||
return
|
||||
dbuuid = self.sudo().get_param('database.uuid')
|
||||
|
|
|
|||
|
|
@ -4,25 +4,45 @@
|
|||
import json
|
||||
|
||||
import requests
|
||||
import werkzeug.http
|
||||
from werkzeug import http, datastructures
|
||||
|
||||
if hasattr(datastructures.WWWAuthenticate, "from_header"):
|
||||
parse_auth = datastructures.WWWAuthenticate.from_header
|
||||
else:
|
||||
parse_auth = http.parse_www_authenticate_header
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.exceptions import AccessDenied, UserError
|
||||
from odoo.exceptions import AccessDenied, AccessError, UserError
|
||||
from odoo.addons.auth_signup.models.res_users import SignupError
|
||||
|
||||
from odoo.addons import base
|
||||
base.models.res_users.USER_PRIVATE_FIELDS.append('oauth_access_token')
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
oauth_provider_id = fields.Many2one('auth.oauth.provider', string='OAuth Provider')
|
||||
oauth_uid = fields.Char(string='OAuth User ID', help="Oauth Provider user_id", copy=False)
|
||||
oauth_access_token = fields.Char(string='OAuth Access Token', readonly=True, copy=False, prefetch=False)
|
||||
oauth_access_token = fields.Char(string='OAuth Access Token Store', readonly=True, copy=False, prefetch=False, groups=fields.NO_ACCESS)
|
||||
has_oauth_access_token = fields.Boolean(string='Has OAuth Access Token', compute='_compute_has_oauth_access_token', groups='base.group_erp_manager')
|
||||
|
||||
_sql_constraints = [
|
||||
('uniq_users_oauth_provider_oauth_uid', 'unique(oauth_provider_id, oauth_uid)', 'OAuth UID must be unique per provider'),
|
||||
]
|
||||
_uniq_users_oauth_provider_oauth_uid = models.Constraint(
|
||||
'unique(oauth_provider_id, oauth_uid)',
|
||||
'OAuth UID must be unique per provider',
|
||||
)
|
||||
|
||||
@property
|
||||
def SELF_READABLE_FIELDS(self):
|
||||
return super().SELF_READABLE_FIELDS + ['has_oauth_access_token']
|
||||
|
||||
@api.depends('oauth_access_token')
|
||||
def _compute_has_oauth_access_token(self):
|
||||
for user in self:
|
||||
user.has_oauth_access_token = bool(user.sudo().oauth_access_token)
|
||||
|
||||
def remove_oauth_access_token(self):
|
||||
user = self.env.user
|
||||
if not (user.has_group('base.group_erp_manager') or self == user):
|
||||
raise AccessError(self.env._('You do not have permissions to remove the access token'))
|
||||
self.sudo().oauth_access_token = False
|
||||
|
||||
def _auth_oauth_rpc(self, endpoint, access_token):
|
||||
if self.env['ir.config_parameter'].sudo().get_param('auth_oauth.authorization_header'):
|
||||
|
|
@ -33,9 +53,8 @@ class ResUsers(models.Model):
|
|||
if response.ok: # nb: could be a successful failure
|
||||
return response.json()
|
||||
|
||||
auth_challenge = werkzeug.http.parse_www_authenticate_header(
|
||||
response.headers.get('WWW-Authenticate'))
|
||||
if auth_challenge.type == 'bearer' and 'error' in auth_challenge:
|
||||
auth_challenge = parse_auth(response.headers.get("WWW-Authenticate"))
|
||||
if auth_challenge and auth_challenge.type == 'bearer' and 'error' in auth_challenge:
|
||||
return dict(auth_challenge)
|
||||
|
||||
return {'error': 'invalid_request'}
|
||||
|
|
@ -62,7 +81,7 @@ class ResUsers(models.Model):
|
|||
]
|
||||
]), None)
|
||||
if not subject:
|
||||
raise AccessDenied('Missing subject identity')
|
||||
raise AccessDenied(self.env._('Missing subject identity'))
|
||||
validation['user_id'] = subject
|
||||
|
||||
return validation
|
||||
|
|
@ -130,16 +149,22 @@ class ResUsers(models.Model):
|
|||
# return user credentials
|
||||
return (self.env.cr.dbname, login, access_token)
|
||||
|
||||
def _check_credentials(self, password, env):
|
||||
def _check_credentials(self, credential, env):
|
||||
try:
|
||||
return super(ResUsers, self)._check_credentials(password, env)
|
||||
return super()._check_credentials(credential, env)
|
||||
except AccessDenied:
|
||||
if not (credential['type'] == 'oauth_token' and credential['token']):
|
||||
raise
|
||||
passwd_allowed = env['interactive'] or not self.env.user._rpc_api_keys_only()
|
||||
if passwd_allowed and self.env.user.active:
|
||||
res = self.sudo().search([('id', '=', self.env.uid), ('oauth_access_token', '=', password)])
|
||||
res = self.sudo().search([('id', '=', self.env.uid), ('oauth_access_token', '=', credential['token'])])
|
||||
if res:
|
||||
return
|
||||
return {
|
||||
'uid': self.env.user.id,
|
||||
'auth_method': 'oauth',
|
||||
'mfa': 'default',
|
||||
}
|
||||
raise
|
||||
|
||||
def _get_session_token_fields(self):
|
||||
return super(ResUsers, self)._get_session_token_fields() | {'oauth_access_token'}
|
||||
return super()._get_session_token_fields() | {'oauth_access_token'}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,28 @@
|
|||
.o_auth_oauth_providers {
|
||||
.fa-facebook-square {
|
||||
color: #3b5998;
|
||||
.o_login_auth {
|
||||
--oauth-icon-size: 1.5em;
|
||||
|
||||
.fa, .oi {
|
||||
font-size: var(--oauth-icon-size);
|
||||
width: 1em; // Force a square sizing, as other icons
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fa-google-plus-square {
|
||||
color: #de564a;
|
||||
}
|
||||
.o_auth_oauth_provider_icon {
|
||||
width: var(--oauth-icon-size);
|
||||
height: var(--oauth-icon-size);
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
.o_custom_icon {
|
||||
margin: 0 0.15em;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
border: 3px solid #714B67;
|
||||
border-radius: 100%;
|
||||
transform: translateY(2px);
|
||||
&.o_odoo_provider {
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M75 150C60.1664 150 45.666 145.601 33.3323 137.36C20.9986 129.119 11.3856 117.406 5.70907 103.701C0.032495 89.9968 -1.45275 74.9168 1.44114 60.3683C4.33503 45.8197 11.4781 32.456 21.967 21.967C32.456 11.4781 45.8197 4.33503 60.3683 1.44114C74.9168 -1.45275 89.9968 0.032495 103.701 5.70907C117.406 11.3856 129.119 20.9986 137.36 33.3323C145.601 45.666 150 60.1664 150 75C150 94.8913 142.098 113.968 128.033 128.033C113.968 142.098 94.8913 150 75 150ZM75 119C83.7024 119 92.2094 116.419 99.4451 111.585C106.681 106.75 112.32 99.8781 115.651 91.8381C118.981 83.7982 119.852 74.9512 118.155 66.4161C116.457 57.8809 112.266 50.0408 106.113 43.8873C99.9592 37.7338 92.1192 33.5432 83.584 31.8455C75.0488 30.1477 66.2019 31.0191 58.162 34.3493C50.122 37.6796 43.2502 43.3192 38.4154 50.555C33.5806 57.7907 31 66.2977 31 75C31 86.6696 35.6357 97.8611 43.8873 106.113C52.1389 114.364 63.3305 119 75 119Z' fill='%23714B67'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
&.o_facebook_provider {
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='500' height='500' viewBox='0 0 500 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M500 250C500 111.93 388.07 0 250 0S0 111.93 0 250c0 117.24 80.72 215.62 189.61 242.64V326.4h-51.55V250h51.55v-32.92c0-85.09 38.51-124.53 122.05-124.53 15.84 0 43.17 3.11 54.35 6.21v69.25c-5.9-.62-16.15-.93-28.88-.93-40.99 0-56.83 15.53-56.83 55.9V250h81.66l-14.03 76.4H280.3v171.77C404.07 483.22 500 377.82 500 250Z' fill='%230866FF'/%3E%3Cpath d='m347.92 326.4 14.03-76.4h-81.66v-27.02c0-40.37 15.84-55.9 56.83-55.9 12.73 0 22.98.31 28.88.93V98.76c-11.18-3.11-38.51-6.21-54.35-6.21-83.54 0-122.05 39.44-122.05 124.53V250h-51.55v76.4h51.55v166.24c19.34 4.8 39.57 7.36 60.39 7.36 10.25 0 20.36-.63 30.29-1.83V326.4h67.64Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
&.o_google_provider {
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' data-name='Layer 1' id='Layer_1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.75,16A7.7446,7.7446,0,0,1,8.7177,18.6259L4.2849,22.1721A13.244,13.244,0,0,0,29.25,16' fill='%2300ac47'/%3E%3Cpath d='M23.75,16a7.7387,7.7387,0,0,1-3.2516,6.2987l4.3824,3.5059A13.2042,13.2042,0,0,0,29.25,16' fill='%234285f4'/%3E%3Cpath d='M8.25,16a7.698,7.698,0,0,1,.4677-2.6259L4.2849,9.8279a13.177,13.177,0,0,0,0,12.3442l4.4328-3.5462A7.698,7.698,0,0,1,8.25,16Z' fill='%23ffba00'/%3E%3Cpolygon fill='%232ab2db' points='8.718 13.374 8.718 13.374 8.718 13.374 8.718 13.374'/%3E%3Cpath d='M16,8.25a7.699,7.699,0,0,1,4.558,1.4958l4.06-3.7893A13.2152,13.2152,0,0,0,4.2849,9.8279l4.4328,3.5462A7.756,7.756,0,0,1,16,8.25Z' fill='%23ea4435'/%3E%3Cpolygon fill='%232ab2db' points='8.718 18.626 8.718 18.626 8.718 18.626 8.718 18.626'/%3E%3Cpath d='M29.25,15v1L27,19.5H16.5V14H28.25A1,1,0,0,1,29.25,15Z' fill='%234285f4'/%3E%3C/svg%3E");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,38 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="providers" name="OAuth Providers">
|
||||
<t t-if="len(providers) > 0">
|
||||
<em t-attf-class="d-block text-center text-muted small my-#{len(providers) if len(providers) < 3 else 3}">- or -</em>
|
||||
<div class="o_auth_oauth_providers list-group mt-1 mb-1 text-start">
|
||||
<a t-foreach="providers" t-as="p" class="list-group-item list-group-item-action py-2" t-att-href="p['auth_link']">
|
||||
<i t-att-class="p['css_class']"/>
|
||||
<t t-esc="p['body']"/>
|
||||
</a>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="login" inherit_id="web.login" name="OAuth Login buttons">
|
||||
<xpath expr="//form" position="before">
|
||||
<t t-set="form_small" t-value="True" t-if="len(providers) > 2"/>
|
||||
</xpath>
|
||||
<xpath expr="//div[hasclass('o_login_auth')]" position="inside">
|
||||
<t t-call="auth_oauth.providers"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="signup" inherit_id="auth_signup.signup" name="OAuth Signup buttons">
|
||||
<xpath expr="//form" position="before">
|
||||
<t t-set="form_small" t-value="True"/>
|
||||
</xpath>
|
||||
<xpath expr="//div[hasclass('o_login_auth')]" position="inside">
|
||||
<t t-call="auth_oauth.providers"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="reset_password" inherit_id="auth_signup.reset_password" name="OAuth Reset Password buttons">
|
||||
<xpath expr="//div[hasclass('o_login_auth')]" position="inside">
|
||||
<t t-call="auth_oauth.providers"/>
|
||||
</xpath>
|
||||
</template>
|
||||
<template id="providers" inherit_id="web.login_oauth" name="OAuth Providers">
|
||||
<xpath expr="//t[@t-set='auth_btns']" position="after">
|
||||
<t t-set="auth_btns" t-value="providers + auth_btns"/>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -24,21 +24,21 @@
|
|||
</field>
|
||||
</record>
|
||||
<record id="view_oauth_provider_tree" model="ir.ui.view">
|
||||
<field name="name">auth.oauth.provider.tree</field>
|
||||
<field name="name">auth.oauth.provider.list</field>
|
||||
<field name="model">auth.oauth.provider</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="arch">
|
||||
<list string="arch">
|
||||
<field name="sequence" widget="handle"/>
|
||||
<field name="name" />
|
||||
<field name="client_id" />
|
||||
<field name="enabled" />
|
||||
</tree>
|
||||
</list>
|
||||
</field>
|
||||
</record>
|
||||
<record id="action_oauth_provider" model="ir.actions.act_window">
|
||||
<field name="name">Providers</field>
|
||||
<field name="res_model">auth.oauth.provider</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="view_mode">list,form</field>
|
||||
</record>
|
||||
<menuitem id="menu_oauth_providers" name="OAuth Providers"
|
||||
parent="base.menu_users" sequence="30"
|
||||
|
|
|
|||
|
|
@ -6,35 +6,24 @@
|
|||
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<div id="msg_module_auth_oauth" position="replace">
|
||||
<div class="content-group" attrs="{'invisible': [('module_auth_oauth','=',False)]}">
|
||||
<div class="content-group" invisible="not module_auth_oauth">
|
||||
<div class="mt8">
|
||||
<button type="action" name="%(auth_oauth.action_oauth_provider)d" string="OAuth Providers" icon="fa-arrow-right" class="btn-link"/>
|
||||
<button type="action" name="%(auth_oauth.action_oauth_provider)d" string="OAuth Providers" icon="oi-arrow-right" class="btn-link"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="module_auth_oauth" position="after">
|
||||
<div class="col-12 col-lg-6 o_setting_box"
|
||||
id="signin_google_setting"
|
||||
attrs="{'invisible': [('module_auth_oauth','=',False)]}">
|
||||
<div class="o_setting_left_pane">
|
||||
<field name="auth_oauth_google_enabled"/>
|
||||
</div>
|
||||
<div class="o_setting_right_pane">
|
||||
<label string="Google Authentication" for="auth_oauth_google_enabled"/>
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/auth/google.html" title="Documentation" class="o_doc_link" target="_blank"></a>
|
||||
<div class="text-muted">
|
||||
Allow users to sign in with their Google account
|
||||
</div>
|
||||
<div class="content-group" attrs="{'invisible': [('auth_oauth_google_enabled','=',False)]}">
|
||||
<div class="row mt16">
|
||||
<label for="auth_oauth_google_client_id" string="Client ID:" class="col-lg-3 o_light_label"/>
|
||||
<field name="auth_oauth_google_client_id" placeholder="e.g. 1234-xyz.apps.googleusercontent.com"/>
|
||||
</div>
|
||||
<a href="https://www.odoo.com/documentation/16.0/applications/general/auth/google.html" target="_blank"><i class="fa fa-fw fa-arrow-right"/>Tutorial</a>
|
||||
<setting id="module_auth_oauth" position="after">
|
||||
<setting id="signin_google_setting" string="Google Authentication" help="Allow users to sign in with their Google account" documentation="/applications/general/auth/google.html" invisible="not module_auth_oauth">
|
||||
<field name="auth_oauth_google_enabled"/>
|
||||
<div class="content-group" invisible="not auth_oauth_google_enabled">
|
||||
<div class="row mt16">
|
||||
<label for="auth_oauth_google_client_id" string="Client ID:" class="col-lg-3 o_light_label"/>
|
||||
<field name="auth_oauth_google_client_id" placeholder="e.g. 1234-xyz.apps.googleusercontent.com"/>
|
||||
</div>
|
||||
<widget name="documentation_link" path="/applications/general/auth/google.html" icon="oi oi-fw oi-arrow-right" label="Tutorial"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</setting>
|
||||
</setting>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -1,20 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_users_form" model="ir.ui.view">
|
||||
<field name="name">res.users.form.inherit</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="type">form</field>
|
||||
<field name="inherit_id" ref="base.view_users_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[@name='preferences']" position="after">
|
||||
<page string="Oauth" name="oauth">
|
||||
<group>
|
||||
<field name="oauth_provider_id"/>
|
||||
<field name="oauth_uid"/>
|
||||
<field name="oauth_access_token"/>
|
||||
</group>
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue