diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_oauth | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/auth_oauth')
96 files changed, 21173 insertions, 0 deletions
diff --git a/addons/auth_oauth/__init__.py b/addons/auth_oauth/__init__.py new file mode 100644 index 00000000..7d34c7c0 --- /dev/null +++ b/addons/auth_oauth/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models diff --git a/addons/auth_oauth/__manifest__.py b/addons/auth_oauth/__manifest__.py new file mode 100644 index 00000000..f22f0c88 --- /dev/null +++ b/addons/auth_oauth/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'OAuth2 Authentication', + 'category': 'Hidden/Tools', + 'description': """ +Allow users to login through OAuth2 Provider. +============================================= +""", + 'maintainer': 'Odoo S.A.', + 'depends': ['base', 'web', 'base_setup', 'auth_signup'], + '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', + ], + 'license': 'LGPL-3', +} diff --git a/addons/auth_oauth/controllers/__init__.py b/addons/auth_oauth/controllers/__init__.py new file mode 100644 index 00000000..5d4b25db --- /dev/null +++ b/addons/auth_oauth/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/addons/auth_oauth/controllers/main.py b/addons/auth_oauth/controllers/main.py new file mode 100644 index 00000000..3d1a6b53 --- /dev/null +++ b/addons/auth_oauth/controllers/main.py @@ -0,0 +1,195 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import functools +import logging + +import json + +import werkzeug.urls +import werkzeug.utils +from werkzeug.exceptions import BadRequest + +from odoo import api, http, SUPERUSER_ID, _ +from odoo.exceptions import AccessDenied +from odoo.http import request +from odoo import registry as registry_get + +from odoo.addons.auth_signup.controllers.main import AuthSignupHome as Home +from odoo.addons.web.controllers.main import db_monodb, ensure_db, set_cookie_and_redirect, login_and_redirect + + +_logger = logging.getLogger(__name__) + + +#---------------------------------------------------------- +# helpers +#---------------------------------------------------------- +def fragment_to_query_string(func): + @functools.wraps(func) + def wrapper(self, *a, **kw): + kw.pop('debug', False) + if not kw: + return """<html><head><script> + var l = window.location; + var q = l.hash.substring(1); + var r = l.pathname + l.search; + if(q.length !== 0) { + var s = l.search ? (l.search === '?' ? '' : '&') : '?'; + r = l.pathname + l.search + s + q; + } + if (r == l.pathname) { + r = '/'; + } + window.location = r; + </script></head><body></body></html>""" + return func(self, *a, **kw) + return wrapper + + +#---------------------------------------------------------- +# Controller +#---------------------------------------------------------- +class OAuthLogin(Home): + def list_providers(self): + try: + providers = request.env['auth.oauth.provider'].sudo().search_read([('enabled', '=', True)]) + except Exception: + providers = [] + for provider in providers: + return_url = request.httprequest.url_root + 'auth_oauth/signin' + state = self.get_state(provider) + params = dict( + response_type='token', + client_id=provider['client_id'], + redirect_uri=return_url, + scope=provider['scope'], + state=json.dumps(state), + ) + provider['auth_link'] = "%s?%s" % (provider['auth_endpoint'], werkzeug.urls.url_encode(params)) + return providers + + def get_state(self, provider): + redirect = request.params.get('redirect') or 'web' + if not redirect.startswith(('//', 'http://', 'https://')): + redirect = '%s%s' % (request.httprequest.url_root, redirect[1:] if redirect[0] == '/' else redirect) + state = dict( + d=request.session.db, + p=provider['id'], + r=werkzeug.urls.url_quote_plus(redirect), + ) + token = request.params.get('token') + if token: + state['t'] = token + return state + + @http.route() + def web_login(self, *args, **kw): + ensure_db() + if request.httprequest.method == 'GET' and request.session.uid and request.params.get('redirect'): + # Redirect if already logged in and redirect param is present + return http.redirect_with_hash(request.params.get('redirect')) + providers = self.list_providers() + + response = super(OAuthLogin, self).web_login(*args, **kw) + if response.is_qweb: + error = request.params.get('oauth_error') + if error == '1': + error = _("Sign up is not allowed on this database.") + elif error == '2': + error = _("Access Denied") + elif error == '3': + error = _("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.") + else: + error = None + + response.qcontext['providers'] = providers + if error: + response.qcontext['error'] = error + + return response + + def get_auth_signup_qcontext(self): + result = super(OAuthLogin, self).get_auth_signup_qcontext() + result["providers"] = self.list_providers() + return result + + +class OAuthController(http.Controller): + + @http.route('/auth_oauth/signin', type='http', auth='none') + @fragment_to_query_string + def signin(self, **kw): + state = json.loads(kw['state']) + dbname = state['d'] + if not http.db_filter([dbname]): + return BadRequest() + provider = state['p'] + context = state.get('c', {}) + registry = registry_get(dbname) + with registry.cursor() as cr: + try: + env = api.Environment(cr, SUPERUSER_ID, context) + credentials = env['res.users'].sudo().auth_oauth(provider, kw) + cr.commit() + action = state.get('a') + menu = state.get('m') + redirect = werkzeug.urls.url_unquote_plus(state['r']) if state.get('r') else False + url = '/web' + if redirect: + url = redirect + elif action: + url = '/web#action=%s' % action + elif menu: + url = '/web#menu_id=%s' % menu + resp = login_and_redirect(*credentials, redirect_url=url) + # Since /web is hardcoded, verify user has right to land on it + if werkzeug.urls.url_parse(resp.location).path == '/web' and not request.env.user.has_group('base.group_user'): + resp.location = '/' + return resp + except AttributeError: + # auth_signup is not installed + _logger.error("auth_signup not installed on database %s: oauth sign up cancelled." % (dbname,)) + url = "/web/login?oauth_error=1" + except AccessDenied: + # oauth credentials not valid, user could be on a temporary session + _logger.info('OAuth2: access denied, redirect to main page in case a valid session exists, without setting cookies') + url = "/web/login?oauth_error=3" + redirect = werkzeug.utils.redirect(url, 303) + redirect.autocorrect_location_header = False + return redirect + except Exception as e: + # signup error + _logger.exception("OAuth2: %s" % str(e)) + url = "/web/login?oauth_error=2" + + return set_cookie_and_redirect(url) + + @http.route('/auth_oauth/oea', type='http', auth='none') + def oea(self, **kw): + """login user via Odoo Account provider""" + dbname = kw.pop('db', None) + if not dbname: + dbname = db_monodb() + if not dbname: + return BadRequest() + if not http.db_filter([dbname]): + return BadRequest() + + registry = registry_get(dbname) + with registry.cursor() as cr: + try: + env = api.Environment(cr, SUPERUSER_ID, {}) + provider = env.ref('auth_oauth.provider_openerp') + except ValueError: + return set_cookie_and_redirect('/web?db=%s' % dbname) + assert provider._name == 'auth.oauth.provider' + + state = { + 'd': dbname, + 'p': provider.id, + 'c': {'no_user_creation': True}, + } + + kw['state'] = json.dumps(state) + return self.signin(**kw) diff --git a/addons/auth_oauth/data/auth_oauth_data.xml b/addons/auth_oauth/data/auth_oauth_data.xml new file mode 100644 index 00000000..b6579cd8 --- /dev/null +++ b/addons/auth_oauth/data/auth_oauth_data.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <record id="provider_openerp" model="auth.oauth.provider"> + <field name="name">Odoo.com Accounts</field> + <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="data_endpoint"></field> + <field name="css_class">fa fa-fw o_custom_icon</field> + <field name="body">Log in with Odoo.com</field> + <field name="enabled" eval="True"/> + </record> + <record id="provider_facebook" model="auth.oauth.provider"> + <field name="name">Facebook Graph</field> + <field name="auth_endpoint">https://www.facebook.com/dialog/oauth</field> + <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> + </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">https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile</field> + <field name="validation_endpoint">https://www.googleapis.com/oauth2/v1/tokeninfo</field> + <field name="data_endpoint">https://www.googleapis.com/oauth2/v1/userinfo</field> + <field name="css_class">fa fa-fw fa-google</field> + <field name="body">Log in with Google</field> + </record> + + <!-- Use database uuid as client_id for OpenERP oauth provider --> + <function model="auth.oauth.provider" name="write"> + <value eval="[ref('auth_oauth.provider_openerp')]"/> + <value model="ir.config_parameter" eval="{ + 'client_id': obj().env['ir.config_parameter'].get_param('database.uuid'), + }"/> + </function> + </data> +</odoo> diff --git a/addons/auth_oauth/i18n/af.po b/addons/auth_oauth/i18n/af.po new file mode 100644 index 00000000..75bdd7a9 --- /dev/null +++ b/addons/auth_oauth/i18n/af.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Andre de Kock <adekock11@gmail.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: Andre de Kock <adekock11@gmail.com>, 2017\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "Geskep deur" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date +msgid "Created on" +msgstr "Geskep op" + +#. 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 "Vertoningsnaam" + +#. 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 "Laas Gewysig op" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. 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 "Volgorde" + +#. 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 "Gebruikers" + +#. 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 "res.config.settings" diff --git a/addons/auth_oauth/i18n/am.po b/addons/auth_oauth/i18n/am.po new file mode 100644 index 00000000..1e963171 --- /dev/null +++ b/addons/auth_oauth/i18n/am.po @@ -0,0 +1,228 @@ +# 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: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_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 "" + +#. 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 "" + +#. 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 "ቅደም ተከተል" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po new file mode 100644 index 00000000..df6d1839 --- /dev/null +++ b/addons/auth_oauth/i18n/ar.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Martin Trigaux, 2020 +# hoxhe Aits <hoxhe0@gmail.com>, 2020 +# Ghaith Gammar <g.gammar@saharaifs.net>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Rachid Al Assir <rachidalassir@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rachid Al Assir <rachidalassir@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: auth_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: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 "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 "دالة CSS" + +#. 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 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 "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 "تسجيل الدخول باستخدام Odoo.com" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "كلمة سر OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 يجب أن يكون فريدًا لكل مزود" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. 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 "سيرفر uri" + +#. 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 "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: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 "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" diff --git a/addons/auth_oauth/i18n/auth_oauth.pot b/addons/auth_oauth/i18n/auth_oauth.pot new file mode 100644 index 00000000..f3d45984 --- /dev/null +++ b/addons/auth_oauth/i18n/auth_oauth.pot @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-04-21 10:46+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/az.po b/addons/auth_oauth/i18n/az.po new file mode 100644 index 00000000..659bba5a --- /dev/null +++ b/addons/auth_oauth/i18n/az.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +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-08-24 09:15+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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: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,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 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 "" + +#. 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 "" + +#. 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_ir_config_parameter +msgid "System Parameter" +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 "" diff --git a/addons/auth_oauth/i18n/bg.po b/addons/auth_oauth/i18n/bg.po new file mode 100644 index 00000000..de67c4fd --- /dev/null +++ b/addons/auth_oauth/i18n/bg.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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: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" + +#. 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 "Автентичност URL" + +#. 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 "Клас CSS" + +#. 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 URL" +msgstr "URL данни" + +#. 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 "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,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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth токен за достъп" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 трябва да е уникален за всеки доставчик" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. 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 "Сървър uri" + +#. 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 "Users" +msgstr "Потребители" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Валидиране URL" + +#. 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 "e.g. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/bn.po b/addons/auth_oauth/i18n/bn.po new file mode 100644 index 00000000..d750882c --- /dev/null +++ b/addons/auth_oauth/i18n/bn.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/bs.po b/addons/auth_oauth/i18n/bs.po new file mode 100644 index 00000000..72b1596a --- /dev/null +++ b/addons/auth_oauth/i18n/bs.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +# Bole <bole@dajmi5.com>, 2018 +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: Bole <bole@dajmi5.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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 "" + +#. 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 "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 "" + +#. 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 "Tijelo poruke" + +#. 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 "ID Klijenta" + +#. 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 "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 URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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 "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 "Zadnje mijenjano" + +#. 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" + +#. 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" + +#. 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 "Sekvenca" + +#. 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_ir_config_parameter +msgid "System Parameter" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/ca.po b/addons/auth_oauth/i18n/ca.po new file mode 100644 index 00000000..472a105a --- /dev/null +++ b/addons/auth_oauth/i18n/ca.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Bàrbara Partegàs <barbararof@gmail.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: 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 " + +#. 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 " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permès" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL d'autenticació" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Missatge" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Clase CSS" + +#. 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 de client" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID de client:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL de les dades" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentació " + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +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" + +#. 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 " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token d'accés OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Proveïdor 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 "Proveïdors 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 "L'identificador únic OAuth ha de ser exclusiu per cada proveïdor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "ID d'usuari de OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "User_ID del proveïdor d'OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nom de proveïdor" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Proveïdors " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Àmbit" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Seqüència" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "URI del servidor" + +#. module: auth_oauth +#: 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" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Paràmetres del sistema" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Usuaris" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL de validació " + +#. 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 "" +"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 +#: 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 "arc" + +#. 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" diff --git a/addons/auth_oauth/i18n/ckb.po b/addons/auth_oauth/i18n/ckb.po new file mode 100644 index 00000000..c6e16ee4 --- /dev/null +++ b/addons/auth_oauth/i18n/ckb.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po new file mode 100644 index 00000000..ff9524a5 --- /dev/null +++ b/addons/auth_oauth/i18n/cs.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# trendspotter, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: karolína schusterová <karolina.schusterova@vdp.sk>, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: auth_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" + +#. module: auth_oauth +#: 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" + +#. 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 "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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Ověřovací URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Tělo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Třída CSS" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID klienta:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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_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 "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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token přístupu OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Poskytovatel 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 "Poskytovatelé 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 "UA OAuth musí být pro každého poskytovatele jedinečné" + +#. 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" + +#. 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Jméno poskytovatele" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Poskytovatelé" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Rozsah" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Číselná řada" + +#. 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 +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Systémový parametr" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Ověření URL" + +#. 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 "" +"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 +#: 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 "oblouk" + +#. 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" diff --git a/addons/auth_oauth/i18n/da.po b/addons/auth_oauth/i18n/da.po new file mode 100644 index 00000000..a93ece98 --- /dev/null +++ b/addons/auth_oauth/i18n/da.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# JonathanStein <jstein@image.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: lhmflexerp <lhm@flexerp.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Adgang nægtet" + +#. 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 "Lader brugere logge ind via 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 "Tillad brugere at logge ind med deres Google konto" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Tilladt" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Godkendelses URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Brødtekst" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS klasse" + +#. 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 "Kunde ID" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Kunde ID:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Adgangs nøgle" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Udbyder" + +#. 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 Udbydere" + +#. 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 skal være unik pr. udbyder" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth Bruger ID" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "Oauth udbyder user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Udbyder navn" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Udbydere" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Anvendelsesområde" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +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" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Systemparameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Brugere" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Godkendelses URL" + +#. 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 "" +"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 +#: 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 "eks. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po new file mode 100644 index 00000000..09d3f38b --- /dev/null +++ b/addons/auth_oauth/i18n/de.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Anja Funk <anja.funk@afimage.de>, 2020 +# Chris Egal <sodaswed@web.de>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: 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 "Erlaube Benutzer sich mit Google Konto einzuloggen" + +#. 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 "Erlaube den Benutzern sich mit deren Google Konto anzumelden" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Erlaubt" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Authorisierungs URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Nachrichtentext" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS Klasse" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Kunden ID:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Daten URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +msgid "Link text in Login Dialog" +msgstr "Text für den Link im Login Dialog" + +#. 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 "Login mit Google" + +#. module: auth_oauth +#: model:auth.oauth.provider,body:auth_oauth.provider_openerp +msgid "Log in with Odoo.com" +msgstr "Login mit Odoo.com" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Zugangstoken" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth User 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Provider Name" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Provider" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Gültigkeitsbereich" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Reihenfolge" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Server URI" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Sign up is not allowed on this database." +msgstr "Anmeldungen nimmt diese Datenbank nicht mehr an" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Systemparameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validierungs URL" + +#. 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 "" +"Sie haben keinen Zugriff mehr auf die Datenbank, deren Einladungen " +"mittlerweise ablaufen sind." + +#. 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 "z. B. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/el.po b/addons/auth_oauth/i18n/el.po new file mode 100644 index 00000000..13891d02 --- /dev/null +++ b/addons/auth_oauth/i18n/el.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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: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" + +#. 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 λογαριασμού τους" + +#. 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 "Διεύθυνση URL αυθεντικοποίησης" + +#. 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 "Κλάση CSS" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Client ID:" + +#. 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 URL" +msgstr "Διεύθυνση URL δεδομένων" + +#. 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 "Έλεγχος ταυτότητας Google" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Διακριτικό πρόσβασης OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 πρέπει να είναι μοναδικό ανά πάροχο" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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 "user_id από πάροχο OAuth" + +#. 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 "Server uri" + +#. 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 "Users" +msgstr "Χρήστες" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Διεύθυνση URL επικύρωσης" + +#. 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 "" +"Δεν έχετε πρόσβαση σε αυτήν τη βάση δεδομένων ή η πρόσκλησή σας έχει λήξει. " +"Παρακαλώ ζητήσετε μια πρόσκληση και φροντίστε να ακολουθήσετε το σύνδεσμο " +"στο email πρόσκλησης." + +#. 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 "π.χ. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/en_AU.po b/addons/auth_oauth/i18n/en_AU.po new file mode 100644 index 00000000..81644d58 --- /dev/null +++ b/addons/auth_oauth/i18n/en_AU.po @@ -0,0 +1,395 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po new file mode 100644 index 00000000..f7eb6ed5 --- /dev/null +++ b/addons/auth_oauth/i18n/en_GB.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/eo.po b/addons/auth_oauth/i18n/eo.po new file mode 100644 index 00000000..d93db556 --- /dev/null +++ b/addons/auth_oauth/i18n/eo.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po new file mode 100644 index 00000000..45fdbeb6 --- /dev/null +++ b/addons/auth_oauth/i18n/es.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Daniela Cervantes <dace@odoo.com>, 2021 +# Pedro M. Baeza <pedro.baeza@tecnativa.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Pedro M. Baeza <pedro.baeza@tecnativa.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Acceso denegado" + +#. 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 "Permitir a los usuarios acceder con 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 a los usuarios firmar con su cuenta Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permitido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autenticación de URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Contenido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Clase CSS" + +#. 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 "Identificación del cliente" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Identificación del cliente:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. 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 el" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL de los datos" + +#. 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 "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 "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 el" + +#. 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 por" + +#. 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 el" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +msgid "Link text in Login Dialog" +msgstr "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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token OAuth de acceso" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Proveedor 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 "Proveedores 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 "La identificación de usuario OAuth debe ser única por proveedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Identificación de usuario OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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 "Identificación de usuario OAuth para el proveedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nombre del proveedor" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Proveedores" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Alcance" + +#. 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 "Servidor uri" + +#. module: auth_oauth +#: 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." + +#. 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:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL de validación" + +#. 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 "" +"No tiene permiso para acceder a esta base de datos o su invitación ha " +"expirado. Por favor solicite una invitación y asegúrese de hacer clic en el " +"enlace en el correo de invitación." + +#. 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 "arco" + +#. 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 "ej.. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/es_BO.po b/addons/auth_oauth/i18n/es_BO.po new file mode 100644 index 00000000..74e94b70 --- /dev/null +++ b/addons/auth_oauth/i18n/es_BO.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_CL.po b/addons/auth_oauth/i18n/es_CL.po new file mode 100644 index 00000000..2c8f2b3d --- /dev/null +++ b/addons/auth_oauth/i18n/es_CL.po @@ -0,0 +1,228 @@ +# 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 (Chile) (https://www.transifex.com/odoo/teams/41243/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" +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 "" diff --git a/addons/auth_oauth/i18n/es_CO.po b/addons/auth_oauth/i18n/es_CO.po new file mode 100644 index 00000000..872bfca1 --- /dev/null +++ b/addons/auth_oauth/i18n/es_CO.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_CR.po b/addons/auth_oauth/i18n/es_CR.po new file mode 100644 index 00000000..26fe7ca8 --- /dev/null +++ b/addons/auth_oauth/i18n/es_CR.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_DO.po b/addons/auth_oauth/i18n/es_DO.po new file mode 100644 index 00000000..e42f253d --- /dev/null +++ b/addons/auth_oauth/i18n/es_DO.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_EC.po b/addons/auth_oauth/i18n/es_EC.po new file mode 100644 index 00000000..3a8e33ca --- /dev/null +++ b/addons/auth_oauth/i18n/es_EC.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_MX.po b/addons/auth_oauth/i18n/es_MX.po new file mode 100644 index 00000000..f5924599 --- /dev/null +++ b/addons/auth_oauth/i18n/es_MX.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Cécile Collart <cco@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Acceso denegado" + +#. 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 "Permitir a los usuarios acceder con 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 a los usuarios firmar con su cuenta Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permitido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autenticación de URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Contenido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Clase CSS" + +#. 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 "Identificación del cliente" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Identificación del cliente:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. 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 el" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL de los datos" + +#. 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 "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 "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 el" + +#. 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 por" + +#. 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 el" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +msgid "Link text in Login Dialog" +msgstr "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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token OAuth de acceso" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Proveedor 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 "Proveedores 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 "La identificación de usuario OAuth debe ser única por proveedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Identificación de usuario OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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 "Identificación de usuario OAuth para el proveedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nombre del proveedor" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Proveedores" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Alcance" + +#. 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 "Servidor uri" + +#. module: auth_oauth +#: 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." + +#. 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:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL de validación" + +#. 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 "" +"No tiene permiso para acceder a esta base de datos o su invitación ha " +"expirado. Por favor solicite una invitación y asegúrese de hacer clic en el " +"enlace en el correo de invitación." + +#. 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 "arco" + +#. 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 "ej.. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/es_PE.po b/addons/auth_oauth/i18n/es_PE.po new file mode 100644 index 00000000..929f414c --- /dev/null +++ b/addons/auth_oauth/i18n/es_PE.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_PY.po b/addons/auth_oauth/i18n/es_PY.po new file mode 100644 index 00000000..3954d18b --- /dev/null +++ b/addons/auth_oauth/i18n/es_PY.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/es_VE.po b/addons/auth_oauth/i18n/es_VE.po new file mode 100644 index 00000000..087d97ea --- /dev/null +++ b/addons/auth_oauth/i18n/es_VE.po @@ -0,0 +1,228 @@ +# 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 "" diff --git a/addons/auth_oauth/i18n/et.po b/addons/auth_oauth/i18n/et.po new file mode 100644 index 00000000..2c13bcb4 --- /dev/null +++ b/addons/auth_oauth/i18n/et.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Martin Talts <martin.t@avalah.ee>, 2021 +# Triine Aavik <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Triine Aavik <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "Juurdepääs keelatud" + +#. 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 "Lubatud" + +#. 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 "Sisu" + +#. 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 "Kliendi ID" + +#. 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 "Seadistused" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Loodud" + +#. 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 "Kuva 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 "" + +#. 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 "Viimati muudetud (millal)" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. 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_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 "Maht" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Järjestus" + +#. 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 "Süsteemi parameeter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Kasutajad" + +#. 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: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 "" diff --git a/addons/auth_oauth/i18n/eu.po b/addons/auth_oauth/i18n/eu.po new file mode 100644 index 00000000..817c8368 --- /dev/null +++ b/addons/auth_oauth/i18n/eu.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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\"/>Tutoriala" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Sarbidea ukatua" + +#. 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 "Baimenduta" + +#. 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 "Gorputza" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS klasea" + +#. 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 "Bezeroaren ID-a" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Bezeroaren ID-a:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. 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 +msgid "Created on" +msgstr "Noiz sortua" + +#. 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 "Izena erakutsi" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentazioa" + +#. 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 "Azken aldaketa" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Azkenengoz eguneratu zuena" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Azken eguneraketa noiz" + +#. 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_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 "Oauth hornitzailea" + +#. 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 "Oauth" + +#. 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 "Hornitzaileak" + +#. 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 "Sekuentzia" + +#. 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 "Datu-base honetan ez dago baimenduta matrikulatzea." + +#. 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" +msgstr "Erabiltzaileak" + +#. 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: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 "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 "adib. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/fa.po b/addons/auth_oauth/i18n/fa.po new file mode 100644 index 00000000..8e838fa4 --- /dev/null +++ b/addons/auth_oauth/i18n/fa.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_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 "Authentication URL" +msgstr "آدرس URL احراز هویت" + +#. 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 "کلاس CSS" + +#. 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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/fi.po b/addons/auth_oauth/i18n/fi.po new file mode 100644 index 00000000..6186a671 --- /dev/null +++ b/addons/auth_oauth/i18n/fi.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2020 +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# Heikki Katajisto <heikki.katajisto@myyntivoima.fi>, 2020 +# Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: 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" + +#. 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 "Salli käyttäjien kirjautuminen Google-tunnuksilla" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Sallittu" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autentikointi/todennus URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Viesti" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Client ID:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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 "Tunniste (ID)" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Access Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. 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" + +#. 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 " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth User 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Palveluntarjoajan nimi" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Palveluntarjoajat" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Laajuus" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Järjestys" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Palvelimen URI" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Järjestelmäparametri" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Käyttäjät" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Vahvistus URL" + +#. 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 "" +"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 +#: 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 "esim. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/fo.po b/addons/auth_oauth/i18n/fo.po new file mode 100644 index 00000000..59bc0295 --- /dev/null +++ b/addons/auth_oauth/i18n/fo.po @@ -0,0 +1,228 @@ +# 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: Faroese (https://www.transifex.com/odoo/teams/41243/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" +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 "Byrjað av" + +#. module: auth_oauth +#: 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" +msgstr "" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name +msgid "Display Name" +msgstr "Vís navn" + +#. 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 "Seinast rættað tann" + +#. module: auth_oauth +#: 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 +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 +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 "" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po new file mode 100644 index 00000000..304085c8 --- /dev/null +++ b/addons/auth_oauth/i18n/fr.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Xavier Belmere <Info@cartmeleon.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Jonathan Quique <jqu@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jonathan Quique <jqu@odoo.com>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Accès refusé" + +#. 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 "Autoriser les utilisateurs à se connecter avec 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 "Autorisez les utilisateurs à se connecter avec leur compte Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Autorisé" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL d'authentification" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Corps" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Classe CSS" + +#. 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. client" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Identifiant client :" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. 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 +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" +msgstr "URL des données" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. 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_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 "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" + +#. 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" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Jeton d'accès OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Fournisseur 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 "Fournisseurs 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 "L'UID OAuth doit être unique par fournisseur" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Id. utilisateur OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "user_id du fournisseur OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nom du fournisseur" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Fournisseurs" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Portée" + +#. module: auth_oauth +#: 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 +msgid "Server uri" +msgstr "URI du serveur" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Sign up is not allowed on this database." +msgstr "Cette base de données n'autorise pas les inscriptions." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Paramètre système" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL de validation" + +#. 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 "" +"Vous n'avez pas le droit d'accéder à cette base de données, ou votre " +"invitation a expirée. Merci de faire une demande d'invitation, et de cliquer" +" sur le lien contenu dans le email d'invitation." + +#. 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 "par exemple: 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/fr_BE.po b/addons/auth_oauth/i18n/fr_BE.po new file mode 100644 index 00000000..ba4b20cd --- /dev/null +++ b/addons/auth_oauth/i18n/fr_BE.po @@ -0,0 +1,395 @@ +# 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:14+0000\n" +"Last-Translator: Martin Trigaux\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" +"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 "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 +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 "Créé par" + +#. module: auth_oauth +#: 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" +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 "" + +#. 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 "" + +#. module: auth_oauth +#: 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 +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." +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 "Utilisateurs" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/fr_CA.po b/addons/auth_oauth/i18n/fr_CA.po new file mode 100644 index 00000000..035a00b8 --- /dev/null +++ b/addons/auth_oauth/i18n/fr_CA.po @@ -0,0 +1,228 @@ +# 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: French (Canada) (https://www.transifex.com/odoo/teams/41243/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" +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 "Créé par" + +#. module: auth_oauth +#: 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" +msgstr "" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. 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 "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 +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 +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 +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 "Séquence" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/gl.po b/addons/auth_oauth/i18n/gl.po new file mode 100644 index 00000000..b5adf28c --- /dev/null +++ b/addons/auth_oauth/i18n/gl.po @@ -0,0 +1,228 @@ +# 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: Galician (https://www.transifex.com/odoo/teams/41243/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" +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 o" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/gu.po b/addons/auth_oauth/i18n/gu.po new file mode 100644 index 00000000..480131d9 --- /dev/null +++ b/addons/auth_oauth/i18n/gu.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel <turkesh4friends@gmail.com>, 2018 +# Dharmraj Jhala <dja@openerp.com>, 2018 +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: Dharmraj Jhala <dja@openerp.com>, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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: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,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 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 "ઓળખ" + +#. 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 "ક્રમ" + +#. 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_ir_config_parameter +msgid "System Parameter" +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 "" diff --git a/addons/auth_oauth/i18n/he.po b/addons/auth_oauth/i18n/he.po new file mode 100644 index 00000000..250db0e0 --- /dev/null +++ b/addons/auth_oauth/i18n/he.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Amit Spilman <amit@laylinetech.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Amit Spilman <amit@laylinetech.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: auth_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: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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/hi.po b/addons/auth_oauth/i18n/hi.po new file mode 100644 index 00000000..faad29f0 --- /dev/null +++ b/addons/auth_oauth/i18n/hi.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po new file mode 100644 index 00000000..a158b623 --- /dev/null +++ b/addons/auth_oauth/i18n/hr.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Jasmina Otročak <jasmina@uvid.hr>, 2020 +# Tina Milas, 2020 +# Bole <bole@dajmi5.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Pristup odbijen / zabranjen" + +#. 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Dopušteno" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autorizacijski URL" + +#. 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 +msgid "CSS class" +msgstr "CSS klasa" + +#. 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 "Postavke" + +#. 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 URL" +msgstr "Podatkovni URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. 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" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token OAuth pristupa" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Pružatelj 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 "Pružatelji 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 mora biti jedinstven po pružatelju" + +#. 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 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" +msgstr "user_id OAuth pružatelja usluge" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Naziv pružatelja usluge" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Pružatelji" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Opseg" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. 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" + +#. module: auth_oauth +#: 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." + +#. 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 "Users" +msgstr "Korisnici" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validacijski URL" + +#. 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 "" +"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 +#: 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" + +#. 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" diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po new file mode 100644 index 00000000..ab5d4e5e --- /dev/null +++ b/addons/auth_oauth/i18n/hu.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Daniel Gerstenbrand <daniel.gerstenbrand@gmail.com>, 2021 +# Zsolt Godó <zsolttokio@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Zsolt Godó <zsolttokio@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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ó" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Hozzáférés megtagadva" + +#. 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 "Engedélyezze a felhasználók Google bejelentkezését" + +#. 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 "Engedélyezze a felhasználóknak, hogy Google fiókkal regisztráljanak" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Engedélyezett" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Hitelesítő webcím" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Törzs" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS osztály" + +#. 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 "Ügyfél azonosító" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Adat URL elérési út" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. 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ó" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +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 " + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth hozzáférési token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth szolgáltató" + +#. 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 szolgáltatók" + +#. 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 egyedi felhasználó azonosító kell szolgáltatónként" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth felhasználó azonosító" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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 "Társszerző" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "Oauth szolgáltatói user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Szolgáltató neve" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Szolgáltatók" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Hatáskör" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sorszám" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Szerver cím" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Rendszer paraméter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Webcím érvényesítés" + +#. 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 "" +"Nincs elérési jogosultsága ehhez az adatbázishoz vagy a meghívója lejárt. " +"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 +#: 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 "vezető" + +#. 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 "pl. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/id.po b/addons/auth_oauth/i18n/id.po new file mode 100644 index 00000000..227f9ee3 --- /dev/null +++ b/addons/auth_oauth/i18n/id.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# oon arfiandwi <oon.arfiandwi@gmail.com>, 2020 +# pnyet <david@zeromail.us>, 2020 +# Febrasari Almania <febrasari.almania@gmail.com>, 2020 +# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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 "Akses Ditolak" + +#. 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 "Memperbolehkan pengguna untuk masuk dengan akun 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 "" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Diperbolehkan" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Otentikasi URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Badan" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Kelas CSS" + +#. 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" + +#. 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 "Pengaturan Konfigurasi" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL Data" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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 "" + +#. 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 "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" + +#. 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" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token akses OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Penyedia 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 "Penyedia 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 per penyedia harus unik" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "ID Pengguna OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "user_id penyedia OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nama penyedia" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Penyedia" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Lingkup" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Urutan" + +#. 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 "Pendaftaran tidak diperbolehkan di basisdata ini." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Parameter Sistem" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Pengguna" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL validasi" + +#. 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 "" +"Anda tidak memiliki akses ke basisdata ini atau undangan anda telah " +"kadaluarsa. Mohon minta undangan dan pastikan untuk mengikuti tautan di " +"email undangan." + +#. 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 "misal 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/is.po b/addons/auth_oauth/i18n/is.po new file mode 100644 index 00000000..3ee346f8 --- /dev/null +++ b/addons/auth_oauth/i18n/is.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +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-08-24 09:15+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: auth_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: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 "Body" + +#. 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 "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 "Stofnað þann" + +#. 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 "Nafn" + +#. 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 "Auðkenni" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. 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 "Runa" + +#. 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_ir_config_parameter +msgid "System Parameter" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Notendur" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po new file mode 100644 index 00000000..2a4d81fc --- /dev/null +++ b/addons/auth_oauth/i18n/it.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Paolo Valier, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Accesso negato" + +#. 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 "Consente agli utenti di accedere con 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 "Consente agli utenti di accedere con il loro account Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Autorizzato" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL di autenticazione" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Corpo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Classe CSS" + +#. 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 cliente" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID cliente:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL dati" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token di accesso OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Fornitore 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 "Fornitori 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 "L'UID OAuth deve essere univoco per fornitore" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "ID utente OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "user_id fornitore OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nome provider" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Provider" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Ambito" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "URI del server" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Parametro di sistema" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL di validazione" + +#. 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 "" +"Accesso non consentito a questo database oppure invito scaduto. Richiedere " +"un invito e accertarsi di seguire correttamente il link nella e-mail " +"ricevuta." + +#. 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 "es. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/ja.po b/addons/auth_oauth/i18n/ja.po new file mode 100644 index 00000000..3813df23 --- /dev/null +++ b/addons/auth_oauth/i18n/ja.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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: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でのサインインを許可" + +#. 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 "認証URL" + +#. 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 "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" + +#. 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 URL" +msgstr "データURL" + +#. 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 "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,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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuthアクセストークン" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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プロバイダ" + +#. 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 はプロバイダごとにユニークでなくてはなりません" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "OAuthプロバイダユーザ" + +#. 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 "サーバuri" + +#. 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 "Users" +msgstr "ユーザ" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "確認URL" + +#. 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 "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" diff --git a/addons/auth_oauth/i18n/ka.po b/addons/auth_oauth/i18n/ka.po new file mode 100644 index 00000000..ef688ae1 --- /dev/null +++ b/addons/auth_oauth/i18n/ka.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: auth_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 "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,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 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 "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" + +#. 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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/kab.po b/addons/auth_oauth/i18n/kab.po new file mode 100644 index 00000000..a812e28f --- /dev/null +++ b/addons/auth_oauth/i18n/kab.po @@ -0,0 +1,228 @@ +# 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: Kabyle (https://www.transifex.com/odoo/teams/41243/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" + +#. 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 "Yerna-t" + +#. module: auth_oauth +#: 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" +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 "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 +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 +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" +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 "Agzum" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/km.po b/addons/auth_oauth/i18n/km.po new file mode 100644 index 00000000..9b068d2c --- /dev/null +++ b/addons/auth_oauth/i18n/km.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Chan Nath <channath@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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: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" + +#. 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 របស់ពួកគេ" + +#. 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 "URL ផ្ទៀងផ្ទាត់" + +#. 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 "ថ្នាក់ CSS " + +#. 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 URL" +msgstr "ទិន្ន័យURL" + +#. 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 "ការសម្គាល់ Google" + +#. 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 "ចូលជាមួយ 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth ដំណើរការរបស់ Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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 " + +#. 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 ត្រូវតែមានតែមួយសម្រាប់អ្នកផ្តល់សេវាកម្ម" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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 អ្នកប្រើ _id" + +#. 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 "ម៉ាស៊ីនបម្រើ uri" + +#. 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 "Users" +msgstr "អ្នកប្រើ" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL សុពលភាព" + +#. 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 "ឧ។ 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/ko.po b/addons/auth_oauth/i18n/ko.po new file mode 100644 index 00000000..1bdb647c --- /dev/null +++ b/addons/auth_oauth/i18n/ko.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# Link Up링크업 <linkup.way@gmail.com>, 2020 +# Linkup <link-up@naver.com>, 2020 +# Seongseok Shin <shinss61@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Seongseok Shin <shinss61@hotmail.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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: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 "사용자가 Google 계정으로 로그인할 수 있도록 허용합니다." + +#. 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 "인증 URL" + +#. 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 "CSS 클래스" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "고객 ID" + +#. 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 URL" +msgstr "데이터 URL" + +#. 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 "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,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 "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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth 접근 토큰" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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 공급자" + +#. 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는 공급자 당 고유해야 합니다" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "Oauth 공급자 user_id" + +#. 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 "서버 URI" + +#. 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 "Users" +msgstr "사용자" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "검증 URL" + +#. 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 "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" diff --git a/addons/auth_oauth/i18n/lb.po b/addons/auth_oauth/i18n/lb.po new file mode 100644 index 00000000..10155cb8 --- /dev/null +++ b/addons/auth_oauth/i18n/lb.po @@ -0,0 +1,230 @@ +# 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" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/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 +#: 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 "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,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 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 "" + +#. 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 +#: 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 "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: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 "" diff --git a/addons/auth_oauth/i18n/lo.po b/addons/auth_oauth/i18n/lo.po new file mode 100644 index 00000000..fdc08306 --- /dev/null +++ b/addons/auth_oauth/i18n/lo.po @@ -0,0 +1,225 @@ +# 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" +"PO-Revision-Date: 2017-10-24 09:00+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/lt.po b/addons/auth_oauth/i18n/lt.po new file mode 100644 index 00000000..77b5edfa --- /dev/null +++ b/addons/auth_oauth/i18n/lt.po @@ -0,0 +1,270 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Aleksandr Jadov <a.jadov@tata.lt>, 2021 +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Anatolij, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Audrius Palenskis <audrius.palenskis@gmail.com>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Prieiga neleidžiama" + +#. 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 "Leisti vartotojams prisijungti su \"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 "Leisti vartotojams prisijungti su savo \"Google\" paskyra" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Leidžiama" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autentifikacijos URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Turinys" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS klasė" + +#. 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 "Kliento ID" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Kliento ID:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Duomenų URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth prieigos raktas" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth tiekėjas" + +#. 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 tiekėjai" + +#. 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 turi būti unikalus kiekvienam tiekėjui" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "Oauth tiekėjo user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Tiekėjo pavadinimas" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Tiekėjai " + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Apimtis" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Seka" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Serverio uri" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Sistemos parametrai" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Vartotojai" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Patvirtinimo URL" + +#. 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 "" +"Neturite prieigos prie šios duomenų bazės arba jūsų pakvietimo galiojimas " +"baigėsi. Paprašykite pakvietimo ir pakvietimo laiške paspauskite pakvietimo " +"nuorodą." + +#. 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 "pvz. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/lv.po b/addons/auth_oauth/i18n/lv.po new file mode 100644 index 00000000..2ed1966c --- /dev/null +++ b/addons/auth_oauth/i18n/lv.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: auth_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 "Piekļuve liegta" + +#. 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 "Galvenā daļa" + +#. 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 "Konfigurācijas iestatījumi" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Izveidots" + +#. 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 "Attēlotais nosaukums" + +#. 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" + +#. 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 modificēts" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. 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_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 "Secība" + +#. 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 "Users" +msgstr "Lietotāji" + +#. 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: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 "" diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po new file mode 100644 index 00000000..11ccaa9b --- /dev/null +++ b/addons/auth_oauth/i18n/mk.po @@ -0,0 +1,228 @@ +# 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: Macedonian (https://www.transifex.com/odoo/teams/41243/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" +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 "Креирано на" + +#. 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 "Секвенца" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/mn.po b/addons/auth_oauth/i18n/mn.po new file mode 100644 index 00000000..8a4d6411 --- /dev/null +++ b/addons/auth_oauth/i18n/mn.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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: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 -р нэвтрэхийг зөвшөөрөх" + +#. 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 account-аа ашиглан нэвтэрч орохыг зөвшөөрөх" + +#. 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 "Хандах эрх шалгах URL" + +#. 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 "CSS класс" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Клиент ID:" + +#. 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 URL" +msgstr "Өгөгдлийн URL" + +#. 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 "Google нэвтрэх горим" + +#. 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,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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Access Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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 үйлчилгээ үзүүлэгч" + +#. 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 нь үйлчилгээ үзүүлэгч бүрт давтагдашгүй байх ёстой" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. 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" + +#. 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 "Серверийн uri" + +#. 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 "Users" +msgstr "Хэрэглэгчид" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Баталгаажуулах URL" + +#. 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 "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" diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po new file mode 100644 index 00000000..be6b2fb7 --- /dev/null +++ b/addons/auth_oauth/i18n/nb.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Jorunn D. Newth, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Tilgang avvist" + +#. 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 "La brukere logge inn 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 "La brukere logge inn med sine Google-konti" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Tillatt" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autentiserings-URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Brødtekst" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS-klasse" + +#. 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 "Klient-ID" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Klient-ID" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data-URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Access Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth-tilbyder" + +#. 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-tilbydere" + +#. 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å være unik per tilbyder" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth-bruker-ID" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "OAuth-tilbyder user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Tilbydernavn" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Tilbydere" + +#. 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 "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" + +#. module: auth_oauth +#: 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." + +#. 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" +msgstr "Brukere" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validerings-URL" + +#. 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 "for eksempel 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/ne.po b/addons/auth_oauth/i18n/ne.po new file mode 100644 index 00000000..a49e9a80 --- /dev/null +++ b/addons/auth_oauth/i18n/ne.po @@ -0,0 +1,225 @@ +# 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" +"PO-Revision-Date: 2017-10-24 09:00+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/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" +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 "" + +#. 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 "" + +#. 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 "" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po new file mode 100644 index 00000000..2c425260 --- /dev/null +++ b/addons/auth_oauth/i18n/nl.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Yenthe Van Ginneken <yenthespam@gmail.com>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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\"/>Handleiding" + +#. module: auth_oauth +#: 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." + +#. 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 "Sta gebruikers toe om aan te melden met hun Google account" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Toegestaan" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Authenticatie URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Inhoud" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS klasse" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Client ID:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Access Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. 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" + +#. 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 moet uniek zijn per provider" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth User 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Provider name" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Providers" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Bereik" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Reeks" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Server url" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Systeem parameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Bevestiging URL" + +#. 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 "" +"U heeft geen toegang tot deze database of uw uitnodiging is verlopen. Vraag " +"aub een nieuwe uitnodiging en wees er zeker van om de link te volgen in uw " +"uitnodigings e-mail." + +#. 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 "bijv. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/nl_BE.po b/addons/auth_oauth/i18n/nl_BE.po new file mode 100644 index 00000000..572c7d18 --- /dev/null +++ b/addons/auth_oauth/i18n/nl_BE.po @@ -0,0 +1,228 @@ +# 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: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\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 "Aangemaakt door" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. 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 "Schermnaam" + +#. 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 "Laatst gewijzigd op" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. 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 "Reeks" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po new file mode 100644 index 00000000..bf3f8e76 --- /dev/null +++ b/addons/auth_oauth/i18n/pl.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Andrzej Donczew <a.donczew@hadron.eu.com>, 2020 +# Radosław Biegalski <radoslaw.biegalski@openglobe.pl>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: auth_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\"/>Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Brak dostępu" + +#. 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 "Zezwalaj użytkownikom slogować się przez 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 "Pozwól użytkownikom logować się za pomocą ich kont Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Dozwolone" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL uwierzytelniania" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Treść" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Klasa CSS" + +#. 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 "Identyfikator klienta" + +#. 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 "Ustawienia konfiguracji" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Dane URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. 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 "Zaloguj poprzez Google" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token dostępu OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Dostawca protokołu 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 "Dostawcy protokołu 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 "Identyfikator użytkownika OAuth musi być unikalny dla danego dostawcy" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Identyfikator użytkownika OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "Dostawca OAuth2" + +#. 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 "Dostawca Oauth user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nazwa dostawcy" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Dostawcy" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Zakres" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Numeracja" + +#. 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 "Users" +msgstr "Użytkownicy" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL walidacji" + +#. 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 "np. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po new file mode 100644 index 00000000..09ed4226 --- /dev/null +++ b/addons/auth_oauth/i18n/pt.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# cafonso <cafonso62@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Pedro Castro Silva <pedrocs@exo.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +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 "Permitir que os utilizadores iniciem a sessão 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 utilizadores iniciem a sessão com a sua conta Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permitido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL de Autenticação" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Corpo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Classe CSS" + +#. 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. de Cliente" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Id. de cliente:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Dados URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +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 "" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Provedor de 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 "Provedores de 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 de OAuth deve ser única por provedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Id de utilizador OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "user_id de Provedor de Oauth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nome de Provedor" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Provedores" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Âmbito" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Uri do servidor" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Parâmetro de Sistema" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Endereço de validação" + +#. 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 "" +"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 +#: 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 "arco" + +#. 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 "Por exemplo, 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po new file mode 100644 index 00000000..091b4ac2 --- /dev/null +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Wagner Pereira <wagner@wagner.pereira.nom.br>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Marina Jacques <marinajacques@gmail.com>, 2020 +# Marcelo Costa <marcelo@comdesk.com.br>, 2020 +# Fernando Colus <fcolus1@gmail.com>, 2020 +# Liane Cafarate <lic@odoo.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +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 que os usuários loguem pelo 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permitido" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autenticar URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Conteúdo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "Classe para o CSS" + +#. 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 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" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Dados da URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Serviço 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" + +#. 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" + +#. 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" + +#. 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Nome do Serviço" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Serviços" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Escopo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "URI do servidor" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Parâmetros do Sistema" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validar URL" + +#. 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 "" +"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." + +#. 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 "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" diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po new file mode 100644 index 00000000..13d4a0cc --- /dev/null +++ b/addons/auth_oauth/i18n/ro.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Cozmin Candea <office@terrabit.ro>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2021\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Acces interzis" + +#. 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 "Le permite utilizatorilor sa se conecteze cu 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 "Le permite utilizatorilor sa se conecteze cu Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Permis" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL Autentificare" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Conținut" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "clasa CSS" + +#. 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 Client" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID Client:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL Date" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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 "Logare 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Simbol de Acces OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "Furnizor 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 "Furnizori 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 OAth trebuie sa fie unic pentru fiecare furnizor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "ID Utilizator OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "id_utilizator Furnizor Oauth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Numele furnizorului" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Furnizori" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Scope" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Secvență" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Server uri" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Parametru de sistem" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL Validare" + +#. 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 "" +"Nu aveți acces la această bază de date sau invitația dvs. a expirat. Vă " +"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 +#: 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 "arc" + +#. 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" diff --git a/addons/auth_oauth/i18n/ru.po b/addons/auth_oauth/i18n/ru.po new file mode 100644 index 00000000..7620bf36 --- /dev/null +++ b/addons/auth_oauth/i18n/ru.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Gennady Marchenko <gennadym@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: auth_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\"/>Консультация</i>" + +#. 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 "Разрешить вход при помощи учетной записи 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" + +#. 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 "URL проверки подлинности" + +#. 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 "Класс CSS" + +#. 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 клиента" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID клиента:" + +#. 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 URL" +msgstr "URL данных" + +#. 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 "Google аутентификация" + +#. 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 "Зайти через 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Токен доступа OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 должен быть уникальным для каждого провайдера" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. 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 "Сервер uri" + +#. 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 "Users" +msgstr "Пользователи" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL валидации" + +#. 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 "например, 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/si.po b/addons/auth_oauth/i18n/si.po new file mode 100644 index 00000000..d4b1a4c5 --- /dev/null +++ b/addons/auth_oauth/i18n/si.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/sk.po b/addons/auth_oauth/i18n/sk.po new file mode 100644 index 00000000..ae431fad --- /dev/null +++ b/addons/auth_oauth/i18n/sk.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Prístup zamietnutý" + +#. 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 "Povoliť používateľom prihlásiť sa cez 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 "Povoliť používateľom prihlásiť sa s účtom Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Povolené" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Autentifikácia URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Telo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS trieda" + +#. 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 klienta" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID klienta:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "URL dát" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. 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 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth prístupový token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth poskytovateľ" + +#. 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 poskytovatelia" + +#. 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 musí byť unikátne pre poskytovateľa" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth ID používateľa" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "Oauth user_id poskytovateľa" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Názov poskytovateľa" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Poskytovatelia" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Rozsah" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Postupnosť" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Server uri" + +#. module: auth_oauth +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Systémový parameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Užívatelia" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Overovacia URL" + +#. 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 "" +"Nemáte prístup do tejto databázy, alebo vaša pozvánka vypršala. Prosím " +"požiadajte o pozvánku a uistite sa že použijete odkaz vo vašom pozývacom " +"emaile." + +#. 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 "napr. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po new file mode 100644 index 00000000..e0a30c25 --- /dev/null +++ b/addons/auth_oauth/i18n/sl.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# laznikd <laznik@mentis.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Grega Vavtar <grega@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: auth_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 "Dostop zavrnjen" + +#. 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 "Dovolite prijavo preko 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 "" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Dovoljeno" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Authentication URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Vsebina" + +#. 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 "Client ID" + +#. 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 "Uredi nastavitve" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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 "" + +#. 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 "Zadnjič spremenjeno" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Access Token" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. 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" + +#. 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 edinstven na ponudnika" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth User 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Ime ponudnika" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Ponudniki" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Obseg" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Zaporedje" + +#. 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 "Prijava v to podatkovno bazo ni dovoljena." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Sistemski parameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validation URL" + +#. 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 "" +"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 +#: 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" diff --git a/addons/auth_oauth/i18n/sq.po b/addons/auth_oauth/i18n/sq.po new file mode 100644 index 00000000..b7192470 --- /dev/null +++ b/addons/auth_oauth/i18n/sq.po @@ -0,0 +1,228 @@ +# 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: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "Krijuar nga" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date +msgid "Created on" +msgstr "Krijuar me" + +#. 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 "Emri i paraqitur" + +#. 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 "Modifikimi i fundit në" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid +msgid "Last Updated by" +msgstr "Modifikuar per here te fundit nga" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date +msgid "Last Updated on" +msgstr "Modifikuar per here te fundit me" + +#. 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 "Sekuencë" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/sr.po b/addons/auth_oauth/i18n/sr.po new file mode 100644 index 00000000..06575756 --- /dev/null +++ b/addons/auth_oauth/i18n/sr.po @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +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: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.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 "" + +#. 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 "Telo" + +#. 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 "Kreiran" + +#. 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 "Niz" + +#. 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_ir_config_parameter +msgid "System Parameter" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. 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 "" diff --git a/addons/auth_oauth/i18n/sr@latin.po b/addons/auth_oauth/i18n/sr@latin.po new file mode 100644 index 00000000..00d6c0df --- /dev/null +++ b/addons/auth_oauth/i18n/sr@latin.po @@ -0,0 +1,231 @@ +# 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 +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: Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\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" + +#. 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 "Tijelo" + +#. 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 "Kreirao" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. 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 "Naziv za prikaz" + +#. 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 "Zadnja promena" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_uid +msgid "Last Updated by" +msgstr "Promenio" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider_write_date +msgid "Last Updated on" +msgstr "Vreme promene" + +#. 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 "Prioritet" + +#. 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 "Korisnici" + +#. 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 "ir.config_parameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po new file mode 100644 index 00000000..fa231480 --- /dev/null +++ b/addons/auth_oauth/i18n/sv.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# lasch a <bmail440@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: lasch a <bmail440@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "Å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" + +#. 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 "Tillåten" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "URL för idkontroll" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Bulk" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__css_class +msgid "CSS class" +msgstr "CSS-klass" + +#. 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 "Klient-ID" + +#. 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 "Konfigurationsinställningar" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +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 den" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data-URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. 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 "Senast redigerad" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +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" + +#. 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth åtkomstpollett" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth-leverantör" + +#. 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-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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth-användar-ID" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Leverantörsnamn" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Leverantörer" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Spelrum" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. 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 "Anslutning är inte tillåten i denna databas." + +#. 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" +msgstr "Användare" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Gransknings-URL" + +#. 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 "" +"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." + +#. 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" + +#. 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" diff --git a/addons/auth_oauth/i18n/ta.po b/addons/auth_oauth/i18n/ta.po new file mode 100644 index 00000000..86a788d7 --- /dev/null +++ b/addons/auth_oauth/i18n/ta.po @@ -0,0 +1,396 @@ +# 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: 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" +"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 "" + +#. 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 "உருவாக்கியவர்" + +#. 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_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 "காட்சி பெயர்" + +#. 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 "கடைசியாக திருத்திய" + +#. 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_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 "" diff --git a/addons/auth_oauth/i18n/th.po b/addons/auth_oauth/i18n/th.po new file mode 100644 index 00000000..83a79d40 --- /dev/null +++ b/addons/auth_oauth/i18n/th.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020 +# gsong <gsong2014@foxmail.com>, 2020 +# Somchart Jabsung <jabsung.s@gmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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 "อนุญาตให้ผู้ใช้เข้าใช้งานจากบัญชี 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 "" + +#. 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 "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 "Client ID" + +#. 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 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 "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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Token การเข้าถึง OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 "ผู้ให้บริการ 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 "" + +#. 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 "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: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 "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" diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po new file mode 100644 index 00000000..a6ce6cf9 --- /dev/null +++ b/addons/auth_oauth/i18n/tr.po @@ -0,0 +1,270 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# ANIL TAN SAĞIR <anils@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Murat Durmuş <muratd@projetgrup.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Murat Durmuş <muratd@projetgrup.com>, 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_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" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +msgstr "Erişim Engellendi" + +#. 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 "Kullanıcıların Google ile oturum açmasına izin ver" + +#. 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 "Kullanıcıların Google hesabıyla oturum açmasına izin ver" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "İzin verildi" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Kimlik Doğrulama URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Gövde" + +#. 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 "Müşteri ID" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "Müşteri Kimliği:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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 "Dokümantasyon" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth Erişim Jetonu" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Sağlayıcı" + +#. 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 Sağlayıcılar" + +#. 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 sağlayıcı başına benzersiz olmalıdır" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth Kullanıcı ID" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +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" +msgstr "Oauth Sağlayıcı user_id" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Sağlayıcı adı" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Sağlayıcılar" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Kapsam" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Sıra" + +#. 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 +#: 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." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "Sistem Parametreleri" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Onaylama URL" + +#. 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 "" +"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 +#: 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 "ör. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/uk.po b/addons/auth_oauth/i18n/uk.po new file mode 100644 index 00000000..758e9242 --- /dev/null +++ b/addons/auth_oauth/i18n/uk.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: auth_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: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" + +#. 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" + +#. 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 "URL автентифікації" + +#. 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 "Клас CSS" + +#. 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 клієнта" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "ID клієнта:" + +#. 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 URL" +msgstr "URL даних" + +#. 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 "Google аутентифікація" + +#. 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,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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "Токен доступу OAuth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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" + +#. 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 повинен бути унікальним для кожного постачальника" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. 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" + +#. 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 "uri сервера" + +#. 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 "Users" +msgstr "Користувачі" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL підтвердження" + +#. 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 "e.g. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/ur.po b/addons/auth_oauth/i18n/ur.po new file mode 100644 index 00000000..9c7cd402 --- /dev/null +++ b/addons/auth_oauth/i18n/ur.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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,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 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 "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_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 "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: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 "" diff --git a/addons/auth_oauth/i18n/vi.po b/addons/auth_oauth/i18n/vi.po new file mode 100644 index 00000000..d8baaf1b --- /dev/null +++ b/addons/auth_oauth/i18n/vi.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# fanha99 <fanha99@hotmail.com>, 2020 +# Thang Duong Bao <nothingctrl@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Dao Nguyen <trucdao.uel@gmail.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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 "<i class=\"fa fa-fw fa-arrow-right\"/>Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Access Denied" +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 +msgid "Allow users to sign in with Google" +msgstr "Allow users to sign in with 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 "Allow users to sign in with their Google account" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__enabled +msgid "Allowed" +msgstr "Allowed" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__auth_endpoint +msgid "Authentication URL" +msgstr "Authentication URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Thân" + +#. 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 "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:" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data URL" +msgstr "Data URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Google Authentication" +msgstr "Google Authentication" + +#. 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 "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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_auth_oauth_provider__body +msgid "Link text in Login Dialog" +msgstr "Link text in 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 with Google" + +#. module: auth_oauth +#: model:auth.oauth.provider,body:auth_oauth.provider_openerp +msgid "Log in with Odoo.com" +msgstr "Log in with Odoo.com" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. 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" + +#. 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 must be unique per provider" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth User 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" + +#. 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" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Provider name" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Providers" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__scope +msgid "Scope" +msgstr "Phạm vi" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__sequence +msgid "Sequence" +msgstr "Trình tự" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_config_settings__server_uri_google +msgid "Server uri" +msgstr "Server uri" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:0 +#, python-format +msgid "Sign up is not allowed on this database." +msgstr "Sign up is not allowed on this database." + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_ir_config_parameter +msgid "System Parameter" +msgstr "System Parameter" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Người dùng" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "Validation URL" + +#. 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 "" +"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." + +#. 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 "e.g. 1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po new file mode 100644 index 00000000..72059e29 --- /dev/null +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# niulin lnc. <admin@niulin.net>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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: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登录" + +#. 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 账户登录" + +#. 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 "CSS类" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "客户端 ID:" + +#. 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 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 "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" + +#. 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 "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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth 访问令牌" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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服务商" + +#. 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必须是每个服务商( provider )唯一的" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "Oauth服务商user_id" + +#. 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 "服务器URI" + +#. 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 "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: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 "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" diff --git a/addons/auth_oauth/i18n/zh_TW.po b/addons/auth_oauth/i18n/zh_TW.po new file mode 100644 index 00000000..67a10721 --- /dev/null +++ b/addons/auth_oauth/i18n/zh_TW.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-04-21 10:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_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: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登錄" + +#. 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 帳戶登錄" + +#. 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 "CSS類" + +#. 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" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Client ID:" +msgstr "用戶端 ID:" + +#. 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 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 "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" + +#. 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 "使用 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_res_users__oauth_access_token +msgid "OAuth Access Token" +msgstr "OAuth 訪問代碼" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_provider_id +msgid "OAuth Provider" +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服務商" + +#. 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 "每個服務商( provider )的OAuth UID必須是唯一的" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +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" + +#. module: auth_oauth +#: model:ir.model.fields,help:auth_oauth.field_res_users__oauth_uid +msgid "Oauth Provider user_id" +msgstr "Oauth服務商user_id" + +#. 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 "伺服器URI" + +#. 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 "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: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 "" +"您無權訪問此資料庫或者您的邀請已經過期.\n" +"請申請一個新的邀請並在您的邀請信件中確認。" + +#. 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 "例如:1234-xyz.apps.googleusercontent.com" diff --git a/addons/auth_oauth/models/__init__.py b/addons/auth_oauth/models/__init__.py new file mode 100644 index 00000000..381d9c86 --- /dev/null +++ b/addons/auth_oauth/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import auth_oauth +from . import res_config_settings +from . import ir_config_parameter +from . import res_users diff --git a/addons/auth_oauth/models/auth_oauth.py b/addons/auth_oauth/models/auth_oauth.py new file mode 100644 index 00000000..bdecce9b --- /dev/null +++ b/addons/auth_oauth/models/auth_oauth.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class AuthOAuthProvider(models.Model): + """Class defining the configuration values of an OAuth2 provider""" + + _name = 'auth.oauth.provider' + _description = 'OAuth2 provider' + _order = 'sequence, name' + + name = fields.Char(string='Provider name', required=True) # Name of the OAuth2 entity, Google, etc + client_id = fields.Char(string='Client ID') # Our identifier + auth_endpoint = fields.Char(string='Authentication URL', required=True) # OAuth provider URL to authenticate users + scope = fields.Char() # OAUth user data desired to access + validation_endpoint = fields.Char(string='Validation URL', required=True) # OAuth provider URL to validate tokens + data_endpoint = fields.Char(string='Data URL') + enabled = fields.Boolean(string='Allowed') + css_class = fields.Char(string='CSS class', default='fa fa-fw fa-sign-in text-primary') + body = fields.Char(required=True, help='Link text in Login Dialog', translate=True) + sequence = fields.Integer(default=10) diff --git a/addons/auth_oauth/models/ir_config_parameter.py b/addons/auth_oauth/models/ir_config_parameter.py new file mode 100644 index 00000000..6a302e2b --- /dev/null +++ b/addons/auth_oauth/models/ir_config_parameter.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class IrConfigParameter(models.Model): + _inherit = 'ir.config_parameter' + + def init(self, force=False): + super(IrConfigParameter, self).init(force=force) + if force: + oauth_oe = self.env.ref('auth_oauth.provider_openerp') + if not oauth_oe: + return + dbuuid = self.sudo().get_param('database.uuid') + oauth_oe.write({'client_id': dbuuid}) diff --git a/addons/auth_oauth/models/res_config_settings.py b/addons/auth_oauth/models/res_config_settings.py new file mode 100644 index 00000000..0c20ab66 --- /dev/null +++ b/addons/auth_oauth/models/res_config_settings.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import logging + +from odoo import api, fields, models + +_logger = logging.getLogger(__name__) + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + @api.model + def get_uri(self): + return "%s/auth_oauth/signin" % (self.env['ir.config_parameter'].get_param('web.base.url')) + + auth_oauth_google_enabled = fields.Boolean(string='Allow users to sign in with Google') + auth_oauth_google_client_id = fields.Char(string='Client ID') + server_uri_google = fields.Char(string='Server uri') + + @api.model + def get_values(self): + res = super(ResConfigSettings, self).get_values() + google_provider = self.env.ref('auth_oauth.provider_google', False) + google_provider and res.update( + auth_oauth_google_enabled=google_provider.enabled, + auth_oauth_google_client_id=google_provider.client_id, + server_uri_google=self.get_uri(), + ) + return res + + def set_values(self): + super(ResConfigSettings, self).set_values() + google_provider = self.env.ref('auth_oauth.provider_google', False) + google_provider and google_provider.write({ + 'enabled': self.auth_oauth_google_enabled, + 'client_id': self.auth_oauth_google_client_id, + }) diff --git a/addons/auth_oauth/models/res_users.py b/addons/auth_oauth/models/res_users.py new file mode 100644 index 00000000..02a2bd97 --- /dev/null +++ b/addons/auth_oauth/models/res_users.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import json + +import requests + +from odoo import api, fields, models +from odoo.exceptions import AccessDenied, 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) + + _sql_constraints = [ + ('uniq_users_oauth_provider_oauth_uid', 'unique(oauth_provider_id, oauth_uid)', 'OAuth UID must be unique per provider'), + ] + + @api.model + def _auth_oauth_rpc(self, endpoint, access_token): + return requests.get(endpoint, params={'access_token': access_token}).json() + + @api.model + def _auth_oauth_validate(self, provider, access_token): + """ return the validation data corresponding to the access token """ + oauth_provider = self.env['auth.oauth.provider'].browse(provider) + validation = self._auth_oauth_rpc(oauth_provider.validation_endpoint, access_token) + if validation.get("error"): + raise Exception(validation['error']) + if oauth_provider.data_endpoint: + data = self._auth_oauth_rpc(oauth_provider.data_endpoint, access_token) + validation.update(data) + return validation + + @api.model + def _generate_signup_values(self, provider, validation, params): + oauth_uid = validation['user_id'] + email = validation.get('email', 'provider_%s_user_%s' % (provider, oauth_uid)) + name = validation.get('name', email) + return { + 'name': name, + 'login': email, + 'email': email, + 'oauth_provider_id': provider, + 'oauth_uid': oauth_uid, + 'oauth_access_token': params['access_token'], + 'active': True, + } + + @api.model + def _auth_oauth_signin(self, provider, validation, params): + """ retrieve and sign in the user corresponding to provider and validated access token + :param provider: oauth provider id (int) + :param validation: result of validation of access token (dict) + :param params: oauth parameters (dict) + :return: user login (str) + :raise: AccessDenied if signin failed + + This method can be overridden to add alternative signin methods. + """ + oauth_uid = validation['user_id'] + try: + oauth_user = self.search([("oauth_uid", "=", oauth_uid), ('oauth_provider_id', '=', provider)]) + if not oauth_user: + raise AccessDenied() + assert len(oauth_user) == 1 + oauth_user.write({'oauth_access_token': params['access_token']}) + return oauth_user.login + except AccessDenied as access_denied_exception: + if self.env.context.get('no_user_creation'): + return None + state = json.loads(params['state']) + token = state.get('t') + values = self._generate_signup_values(provider, validation, params) + try: + _, login, _ = self.signup(values, token) + return login + except (SignupError, UserError): + raise access_denied_exception + + @api.model + def auth_oauth(self, provider, params): + # Advice by Google (to avoid Confused Deputy Problem) + # if validation.audience != OUR_CLIENT_ID: + # abort() + # else: + # continue with the process + access_token = params.get('access_token') + validation = self._auth_oauth_validate(provider, access_token) + # required check + if not validation.get('user_id'): + # Workaround: facebook does not send 'user_id' in Open Graph Api + if validation.get('id'): + validation['user_id'] = validation['id'] + else: + raise AccessDenied() + + # retrieve and sign in user + login = self._auth_oauth_signin(provider, validation, params) + if not login: + raise AccessDenied() + # return user credentials + return (self.env.cr.dbname, login, access_token) + + def _check_credentials(self, password, env): + try: + return super(ResUsers, self)._check_credentials(password, env) + except AccessDenied: + 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)]) + if res: + return + raise + + def _get_session_token_fields(self): + return super(ResUsers, self)._get_session_token_fields() | {'oauth_access_token'} diff --git a/addons/auth_oauth/security/ir.model.access.csv b/addons/auth_oauth/security/ir.model.access.csv new file mode 100644 index 00000000..65fd2f54 --- /dev/null +++ b/addons/auth_oauth/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_auth_oauth_provider,auth_oauth_provider,model_auth_oauth_provider,base.group_system,1,1,1,1 diff --git a/addons/auth_oauth/static/src/scss/auth_oauth.scss b/addons/auth_oauth/static/src/scss/auth_oauth.scss new file mode 100644 index 00000000..3225d521 --- /dev/null +++ b/addons/auth_oauth/static/src/scss/auth_oauth.scss @@ -0,0 +1,17 @@ +.o_auth_oauth_providers { + .fa-facebook-square { + color: #3b5998; + } + + .fa-google-plus-square { + color: #de564a; + } + + .o_custom_icon { + margin: 0 0.15em; + @include size(1em); + border: 3px solid #875A7B; + border-radius: 100%; + transform: translateY(2px); + } +} diff --git a/addons/auth_oauth/views/auth_oauth_templates.xml b/addons/auth_oauth/views/auth_oauth_templates.xml new file mode 100644 index 00000000..529bd8f2 --- /dev/null +++ b/addons/auth_oauth/views/auth_oauth_templates.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="assets_frontend" inherit_id="web.assets_frontend" name="OAuth Providers Assets"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/auth_oauth/static/src/scss/auth_oauth.scss"/> + </xpath> + </template> + + <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-left"> + <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> +</odoo> diff --git a/addons/auth_oauth/views/auth_oauth_views.xml b/addons/auth_oauth/views/auth_oauth_views.xml new file mode 100644 index 00000000..1d9fecdc --- /dev/null +++ b/addons/auth_oauth/views/auth_oauth_views.xml @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<odoo> + <record id="view_oauth_provider_form" model="ir.ui.view"> + <field name="name">auth.oauth.provider.form</field> + <field name="model">auth.oauth.provider</field> + <field name="arch" type="xml"> + <form string="arch"> + <sheet> + <group> + <field name="name" /> + <field name="client_id" /> + <field name="enabled" /> + <field name="body" /> + <field name="css_class" groups="base.group_no_one" /> + </group> + <group> + <field name="auth_endpoint" /> + <field name="scope" /> + <field name="validation_endpoint" /> + <field name="data_endpoint" /> + </group> + </sheet> + </form> + </field> + </record> + <record id="view_oauth_provider_tree" model="ir.ui.view"> + <field name="name">auth.oauth.provider.tree</field> + <field name="model">auth.oauth.provider</field> + <field name="arch" type="xml"> + <tree string="arch"> + <field name="sequence" widget="handle"/> + <field name="name" /> + <field name="client_id" /> + <field name="enabled" /> + </tree> + </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> + </record> + <menuitem id="menu_oauth_providers" name="OAuth Providers" + parent="base.menu_users" sequence="30" + action="action_oauth_provider" groups="base.group_no_one"/> +</odoo> diff --git a/addons/auth_oauth/views/res_config_settings_views.xml b/addons/auth_oauth/views/res_config_settings_views.xml new file mode 100644 index 00000000..7bb93d21 --- /dev/null +++ b/addons/auth_oauth/views/res_config_settings_views.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.view.form.inherit.auth.oauth</field> + <field name="model">res.config.settings</field> + <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="mt8"> + <button type="action" name="%(auth_oauth.action_oauth_provider)d" string="OAuth Providers" icon="fa-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/14.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/14.0/applications/general/auth/google.html" target="_blank"><i class="fa fa-fw fa-arrow-right"/>Tutorial</a> + </div> + </div> + </div> + </div> + </field> + </record> +</odoo> diff --git a/addons/auth_oauth/views/res_users_views.xml b/addons/auth_oauth/views/res_users_views.xml new file mode 100644 index 00000000..11a12e18 --- /dev/null +++ b/addons/auth_oauth/views/res_users_views.xml @@ -0,0 +1,20 @@ +<?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='access_rights']" 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> |
