From b7393c1ca4e01466dc2800aafecf3409ad7d8192 Mon Sep 17 00:00:00 2001 From: osoto Date: Thu, 28 Nov 2024 13:20:12 +0100 Subject: [PATCH 01/15] [ADD] cicd --- .gitignore copy | 81 +++++++++++++++++++++++ .gitlab-ci.yml | 10 +++ .pre-commit-config copy.yaml | 69 ++++++++++++++++++++ .pylintrc | 123 +++++++++++++++++++++++++++++++++++ .pylintrc-mandatory | 98 ++++++++++++++++++++++++++++ .ruff.toml | 32 +++++++++ 6 files changed, 413 insertions(+) create mode 100644 .gitignore copy create mode 100644 .gitlab-ci.yml create mode 100644 .pre-commit-config copy.yaml create mode 100644 .pylintrc create mode 100644 .pylintrc-mandatory create mode 100644 .ruff.toml diff --git a/.gitignore copy b/.gitignore copy new file mode 100644 index 0000000..b57d574 --- /dev/null +++ b/.gitignore copy @@ -0,0 +1,81 @@ +# Project Docker Volumes +odoo_data/ +odoo_backups/ +postgresql_data/ +compose.yml +Dockerfile +# .gitlab-ci.yml +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +/.venv +/.pytest_cache + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +*.eggs + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Pycharm +.idea + +# Eclipse +.settings + +# Visual Studio cache/options directory +.vs/ +.vscode + +# OSX Files +.DS_Store + +# Django stuff: +*.log + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Sphinx documentation +docs/_build/ + +# Backup files +*~ +*.swp + +# OCA rules +!static/lib/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..980746d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +variables: + RUN_PRE_COMMIT: "true" + USE_OF_PUBLIC_REGISTRY: "false" + RUN_TESTS: "false" + RUN_PUBLISH: "false" + +include: + - project: 'sidoo/sidoo-cicd' + ref: 'master' + file: '/.gitlab-ci.yml' diff --git a/.pre-commit-config copy.yaml b/.pre-commit-config copy.yaml new file mode 100644 index 0000000..f0d5d9a --- /dev/null +++ b/.pre-commit-config copy.yaml @@ -0,0 +1,69 @@ +exclude: | + (?x) + # NOT INSTALLABLE ADDONS + __unported/| + # END NOT INSTALLABLE ADDONS + # Files and folders generated by bots, to avoid loops + ^setup/|/static/description/index\.html$| + # We don't want to mess with tool-generated files + .svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/| + # Maybe reactivate this when all README files include prettier ignore tags? + ^README\.md$| + # Library files can have extraneous formatting (even minimized) + /static/(src/)?lib/| + # Repos using Sphinx to generate docs don't need prettying + ^docs/_templates/.*\.html$| + # Don't bother non-technical authors with formatting issues in docs + readme/.*\.(rst|md)$| + # Ignore build and dist directories in addons + /build/|/dist/| + # You don't usually want a bot to modify your legal texts + (LICENSE.*|COPYING.*) +default_language_version: + python: python3 + node: "16.17.0" +repos: +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.1.3 + hooks: + - id: ruff + args: [--fix, --exit-non-zero-on-fix] + - id: ruff-format +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: debug-statements + - id: fix-encoding-pragma + args: ["--remove"] + - id: check-case-conflict + - id: check-docstring-first + - id: check-executables-have-shebangs + - id: check-merge-conflict + - id: check-symlinks + - id: check-xml + - id: check-yaml + - id: mixed-line-ending + args: ["--fix=lf"] +- repo: https://github.com/asottile/pyupgrade + rev: v2.29.0 + hooks: + - id: pyupgrade +- repo: https://github.com/OCA/pylint-odoo + rev: v9.0.5 + hooks: + - id: pylint_odoo + name: pylint with optional checks + args: + - --rcfile=.pylintrc + - --exit-zero + verbose: true + - id: pylint_odoo + args: + - --rcfile=.pylintrc-mandatory +# - repo: https://github.com/pre-commit/pre-commit-hooks +# rev: v4.5.0 +# hooks: +# - id: no-commit-to-branch +# args: ['--branch', '17.0'] diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..27bcbf7 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,123 @@ + + +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +; manifest-required-authors=Odoo Community Association (OCA) +; manifest-required-keys=license +; manifest-deprecated-keys=description,active +; license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid-odoo-versions=17.0 + +[MESSAGES CONTROL] +disable=all + +# This .pylintrc contains optional AND mandatory checks and is meant to be +# loaded in an IDE to have it check everything, in the hope this will make +# optional checks more visible to contributors who otherwise never look at a +# green travis to see optional checks that failed. +# .pylintrc-mandatory containing only mandatory checks is used the pre-commit +# config as a blocking check. + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + manifest-author-string, + ; manifest-deprecated-key, + ; manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + attribute-string-redundant, + character-not-valid-in-resource-link, + consider-merging-classes-inherited, + context-overridden, + create-user-wo-reset-password, + dangerous-filter-wo-user, + dangerous-qweb-replace-wo-priority, + deprecated-data-xml-node, + deprecated-openerp-xml-node, + duplicate-po-message-definition, + except-pass, + file-not-used, + invalid-commit, + manifest-maintainers-list, + missing-newline-extrafiles, + ; missing-readme, + missing-return, + odoo-addons-relative-import, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + renamed-field-parameter, + resource-not-exist, + str-format-used, + test-folder-imported, + translation-contains-variable, + translation-positional-used, + unnecessary-utf8-coding-comment, + website-manifest-key-not-valid-uri, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + external-request-timeout, + # messages that do not cause the lint step to fail + consider-merging-classes-inherited, + create-user-wo-reset-password, + dangerous-filter-wo-user, + deprecated-module, + file-not-used, + invalid-commit, + missing-manifest-dependency, + missing-newline-extrafiles, + ; missing-readme, + no-utf8-coding-comment, + odoo-addons-relative-import, + old-api7-method-defined, + redefined-builtin, + too-complex, + unnecessary-utf8-coding-comment + + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory new file mode 100644 index 0000000..3652abb --- /dev/null +++ b/.pylintrc-mandatory @@ -0,0 +1,98 @@ + +[MASTER] +load-plugins=pylint_odoo +score=n + +[ODOOLINT] +readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +/* manifest-required-authors=Odoo Community Association (OCA) +manifest-required-keys=license +manifest-deprecated-keys=description,active */ +license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid-odoo-versions=17.0 + +[MESSAGES CONTROL] +disable=all + +enable=anomalous-backslash-in-string, + api-one-deprecated, + api-one-multi-together, + assignment-from-none, + attribute-deprecated, + class-camelcase, + dangerous-default-value, + dangerous-view-replace-wo-priority, + development-status-allowed, + duplicate-id-csv, + duplicate-key, + duplicate-xml-fields, + duplicate-xml-record-id, + eval-referenced, + eval-used, + incoherent-interpreter-exec-perm, + license-allowed, + /* manifest-author-string, */ + /* manifest-deprecated-key, */ + manifest-required-author, + manifest-required-key, + manifest-version-format, + method-compute, + method-inverse, + method-required-super, + method-search, + openerp-exception-warning, + pointless-statement, + pointless-string-statement, + print-used, + redundant-keyword-arg, + redundant-modulename-xml, + reimported, + relative-import, + return-in-init, + rst-syntax-error, + sql-injection, + too-few-format-args, + translation-field, + translation-required, + unreachable, + use-vim-comment, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + attribute-string-redundant, + character-not-valid-in-resource-link, + consider-merging-classes-inherited, + context-overridden, + create-user-wo-reset-password, + dangerous-filter-wo-user, + dangerous-qweb-replace-wo-priority, + deprecated-data-xml-node, + deprecated-openerp-xml-node, + duplicate-po-message-definition, + except-pass, + file-not-used, + invalid-commit, + manifest-maintainers-list, + missing-newline-extrafiles, + /* missing-readme, */ + missing-return, + odoo-addons-relative-import, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + renamed-field-parameter, + resource-not-exist, + str-format-used, + test-folder-imported, + translation-contains-variable, + translation-positional-used, + unnecessary-utf8-coding-comment, + website-manifest-key-not-valid-uri, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + external-request-timeout + +[REPORTS] +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} +output-format=colorized +reports=no diff --git a/.ruff.toml b/.ruff.toml new file mode 100644 index 0000000..bcef236 --- /dev/null +++ b/.ruff.toml @@ -0,0 +1,32 @@ +target-version = "py310" +fix = true +line-length = 88 + +[pycodestyle] +max-line-length = 100 + +[lint] +extend-select = [ + "B", + "C90", + "I", # isort + "UP", # pyupgrade +] +exclude = ["setup/*", "__unported/*"] + +[format] +exclude = ["setup/*", "__unported/*"] + +[per-file-ignores] +"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py +"__manifest__.py" = ["B018"] # useless expression + +[isort] +section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"] + +[isort.sections] +"odoo" = ["odoo"] +"odoo-addons" = ["odoo.addons"] + +[mccabe] +max-complexity = 16 From 35bb2c41316d4b5870bb99632e3eb1c548495464 Mon Sep 17 00:00:00 2001 From: osoto Date: Thu, 28 Nov 2024 13:20:55 +0100 Subject: [PATCH 02/15] [ADD] cicd --- .gitignore copy | 81 ------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .gitignore copy diff --git a/.gitignore copy b/.gitignore copy deleted file mode 100644 index b57d574..0000000 --- a/.gitignore copy +++ /dev/null @@ -1,81 +0,0 @@ -# Project Docker Volumes -odoo_data/ -odoo_backups/ -postgresql_data/ -compose.yml -Dockerfile -# .gitlab-ci.yml -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -/.venv -/.pytest_cache - -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -bin/ -build/ -develop-eggs/ -dist/ -eggs/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg -*.eggs - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.cache -nosetests.xml -coverage.xml - -# Translations -*.mo - -# Pycharm -.idea - -# Eclipse -.settings - -# Visual Studio cache/options directory -.vs/ -.vscode - -# OSX Files -.DS_Store - -# Django stuff: -*.log - -# Mr Developer -.mr.developer.cfg -.project -.pydevproject - -# Rope -.ropeproject - -# Sphinx documentation -docs/_build/ - -# Backup files -*~ -*.swp - -# OCA rules -!static/lib/ From 0a3c34d84455956655bcc2ce7092bd42db9153d1 Mon Sep 17 00:00:00 2001 From: Fernando La Chica Date: Fri, 28 Mar 2025 11:27:07 +0100 Subject: [PATCH 03/15] =?UTF-8?q?Eliminaci=C3=B3n=20masiva=20con=20ORM+Cro?= =?UTF-8?q?n+Job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deletions/__init__.py | 1 + deletions/__manifest__.py | 17 ++++ deletions/data/ir_config_parameter_data.xml | 10 ++ deletions/data/ir_cron_data.xml | 11 +++ deletions/models/__init__.py | 2 + deletions/models/ir_deletion.py | 104 ++++++++++++++++++++ deletions/models/ir_deletion_log.py | 11 +++ deletions/security/ir.model.access.csv | 3 + deletions/views/ir_deletion_log_views.xml | 24 +++++ deletions/views/ir_deletion_views.xml | 78 +++++++++++++++ 10 files changed, 261 insertions(+) create mode 100644 deletions/__init__.py create mode 100644 deletions/__manifest__.py create mode 100644 deletions/data/ir_config_parameter_data.xml create mode 100644 deletions/data/ir_cron_data.xml create mode 100644 deletions/models/__init__.py create mode 100644 deletions/models/ir_deletion.py create mode 100644 deletions/models/ir_deletion_log.py create mode 100644 deletions/security/ir.model.access.csv create mode 100644 deletions/views/ir_deletion_log_views.xml create mode 100644 deletions/views/ir_deletion_views.xml diff --git a/deletions/__init__.py b/deletions/__init__.py new file mode 100644 index 0000000..9a7e03e --- /dev/null +++ b/deletions/__init__.py @@ -0,0 +1 @@ +from . import models \ No newline at end of file diff --git a/deletions/__manifest__.py b/deletions/__manifest__.py new file mode 100644 index 0000000..a066866 --- /dev/null +++ b/deletions/__manifest__.py @@ -0,0 +1,17 @@ +{ + 'name': 'Deletions', + 'version': '12.0.1.0.0', + 'summary': 'Módulo para gestionar eliminaciones masivas de datos', + 'author': 'Tu Nombre', + 'category': 'Tools', + 'depends': ['base', 'queue_job'], + 'data': [ + 'security/ir.model.access.csv', + 'views/ir_deletion_views.xml', + 'data/ir_config_parameter_data.xml', + 'data/ir_cron_data.xml', + 'views/ir_deletion_log_views.xml', + ], + 'installable': True, + 'application': False, +} diff --git a/deletions/data/ir_config_parameter_data.xml b/deletions/data/ir_config_parameter_data.xml new file mode 100644 index 0000000..4ecab5b --- /dev/null +++ b/deletions/data/ir_config_parameter_data.xml @@ -0,0 +1,10 @@ + + + ir.deletion.start_time + 04:00 + + + ir.deletion.end_time + 05:00 + + diff --git a/deletions/data/ir_cron_data.xml b/deletions/data/ir_cron_data.xml new file mode 100644 index 0000000..eb4f03c --- /dev/null +++ b/deletions/data/ir_cron_data.xml @@ -0,0 +1,11 @@ + + + Process Deletion + + code + model.process_deletions() + 1 + hours + True + + diff --git a/deletions/models/__init__.py b/deletions/models/__init__.py new file mode 100644 index 0000000..8b1358c --- /dev/null +++ b/deletions/models/__init__.py @@ -0,0 +1,2 @@ +from . import ir_deletion +from . import ir_deletion_log diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py new file mode 100644 index 0000000..1e80753 --- /dev/null +++ b/deletions/models/ir_deletion.py @@ -0,0 +1,104 @@ +from odoo import models, fields, api, _ + +import logging +from datetime import datetime +from odoo.exceptions import UserError + + +_logger = logging.getLogger(__name__) + +class IRDeletion(models.Model): + _name = 'ir.deletion' + _description = 'IR Deletion' + + name = fields.Char(string='Name', required=True) + model_id = fields.Many2one('ir.model', string='Model', required=True) + sql_statement = fields.Text(string='SQL Statement', required=True) + sql_count_statement = fields.Text(string='SQL Count Statement') + active = fields.Boolean(string='Active', default=False) + log_ids = fields.One2many('ir.deletion.log', 'deletion_id', string='Logs') + limit = fields.Integer(string='Limit', default=100) + last_elapsed_time = fields.Float(string='Last Elapsed Time', readonly=True) + + def process_deletions(self): + today = fields.Date.today() + current_time = datetime.now().time() + start_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.start_time') + end_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.end_time') + + if start_time and end_time: + start_time = datetime.strptime(start_time, '%H:%M').time() + end_time = datetime.strptime(end_time, '%H:%M').time() + + if not (start_time <= current_time <= end_time): + _logger.info('Current time is outside the allowed range {} - {}. Modify config parameters.'.format(start_time, end_time)) + raise UserError(_('Current time is outside the allowed range {} - {}. Modify config parameters.').format(start_time, end_time)) + else: + _logger.info('Start time or end time is not set. Logs will not be created or modified.') + raise UserError(_('Start time or end time is not set. Logs will not be created or modified.')) + + for record in self.search([('active', '=', True)]): + try: + with self.env.cr.savepoint(): + log = self.env['ir.deletion.log'].search([('deletion_id', '=', record.id), ('date', '=', today)], limit=1) + if not log: + if record.sql_count_statement: + self.env.cr.execute(record.sql_count_statement) + initial_count = self.env.cr.fetchone()[0] + else: + initial_count = self.env[record.model_id.model].search_count([]) + log = self.env['ir.deletion.log'].create({ + 'deletion_id': record.id, + 'date': today, + 'initial_count': initial_count, + }) + if record.sql_count_statement: + self.env.cr.execute(record.sql_count_statement) + final_count = self.env.cr.fetchone()[0] + else: + final_count = self.env[record.model_id.model].search_count([]) + record.with_delay().process_deletion(record.model_id.id, record.id) + except Exception as e: + _logger.error('Error processing deletion: %s' % e) + + def process_deletion(self, model_id=False, id=False): + if not model_id or not id: + self.ensure_one() + id = self.id + model_id = self.model_id.id + + start_datetime = datetime.now() + model_name = self.env['ir.model'].browse(model_id).model + deletion_id = self.env['ir.deletion'].browse(id) + try: + with self.env.cr.savepoint(): + self.env.cr.execute(deletion_id.sql_statement + ' LIMIT %s', (self.limit,)) + for record in self.env.cr.dictfetchall(): + _logger.info('Deleting %s with ID: %s' % (model_name, record['id'])) + model_id = self.env[model_name].browse(record['id']) + if model_id: + model_id.unlink() + last_elapsed_time = (datetime.now() - start_datetime).total_seconds() + final_count = 0 + if deletion_id.sql_count_statement: + self.env.cr.execute(deletion_id.sql_count_statement) + final_count = self.env.cr.fetchone()[0] + else: + final_count = self.env[deletion_id.model_id.model].search_count([]) + + log_id = self.env['ir.deletion.log'].search([('deletion_id', '=', id), ('date', '=', fields.Date.today())], limit=1) + log_id.write({ + 'final_count': final_count, + }) + log_id.deletion_id.write({ + 'last_elapsed_time': last_elapsed_time + }) + except Exception as e: + _logger.error('Error during deletion process: %s' % e) + + def action_view_logs(self): + action = self.env.ref('deletions.action_view_logs').read()[0] + action['domain'] = [('deletion_id', '=', self.id)] + return action + + diff --git a/deletions/models/ir_deletion_log.py b/deletions/models/ir_deletion_log.py new file mode 100644 index 0000000..da4bae9 --- /dev/null +++ b/deletions/models/ir_deletion_log.py @@ -0,0 +1,11 @@ +from odoo import models, fields, api +from datetime import date + +class IRDeletionLog(models.Model): + _name = 'ir.deletion.log' + _description = 'IR Deletion Log' + + deletion_id = fields.Many2one('ir.deletion', string='Deletion', required=True, ondelete='cascade') + date = fields.Date(string='Date', default=fields.Date.today, required=True) + initial_count = fields.Integer(string='Initial Count', readonly=True) + final_count = fields.Integer(string='Final Count', readonly=True) diff --git a/deletions/security/ir.model.access.csv b/deletions/security/ir.model.access.csv new file mode 100644 index 0000000..b3f3e02 --- /dev/null +++ b/deletions/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_ir_deletion_user,access_ir_deletion_user,model_ir_deletion,base.group_user,1,1,1,1 +access_ir_deletion_log_user,access_ir_deletion_log_user,model_ir_deletion_log,base.group_user,1,1,1,1 diff --git a/deletions/views/ir_deletion_log_views.xml b/deletions/views/ir_deletion_log_views.xml new file mode 100644 index 0000000..be879a5 --- /dev/null +++ b/deletions/views/ir_deletion_log_views.xml @@ -0,0 +1,24 @@ + + + ir.deletion.log.tree + ir.deletion.log + + + + + + + + + + + Deletion Logs + ir.deletion.log + tree,form + + + diff --git a/deletions/views/ir_deletion_views.xml b/deletions/views/ir_deletion_views.xml new file mode 100644 index 0000000..4b5b900 --- /dev/null +++ b/deletions/views/ir_deletion_views.xml @@ -0,0 +1,78 @@ + + + ir.deletion.form + ir.deletion + +
+ +
+ + +
+ + + + + + + + + + +
+
+
+
+ + + ir.deletion.tree + ir.deletion + + + + + + + + + + + + + ir.deletion.search + ir.deletion + + + + + + + + + + + Deletions + ir.deletion + tree,form + ir.actions.act_window + [] + {'search_default_all': 1} + + + + Logs + ir.deletion.log + tree,form + ir.actions.act_window + [('deletion_id', '=', active_id)] + + + + +
From f48020804da46702b16e0422f26c870e7c7bbf5c Mon Sep 17 00:00:00 2001 From: Fernando La Chica Date: Tue, 1 Apr 2025 08:55:15 +0200 Subject: [PATCH 04/15] Filtrar por fecha en job --- deletions/data/ir_config_parameter_data.xml | 18 ++++---- deletions/models/ir_deletion.py | 44 ++++++++++++-------- deletions/static/description/icon.png | Bin 0 -> 15648 bytes deletions/views/ir_deletion_views.xml | 2 + 4 files changed, 38 insertions(+), 26 deletions(-) create mode 100644 deletions/static/description/icon.png diff --git a/deletions/data/ir_config_parameter_data.xml b/deletions/data/ir_config_parameter_data.xml index 4ecab5b..c9399a4 100644 --- a/deletions/data/ir_config_parameter_data.xml +++ b/deletions/data/ir_config_parameter_data.xml @@ -1,10 +1,12 @@ - - ir.deletion.start_time - 04:00 - - - ir.deletion.end_time - 05:00 - + + + ir.deletion.start_time + 04:00 + + + ir.deletion.end_time + 05:00 + + diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py index 1e80753..6d200dd 100644 --- a/deletions/models/ir_deletion.py +++ b/deletions/models/ir_deletion.py @@ -19,49 +19,56 @@ class IRDeletion(models.Model): log_ids = fields.One2many('ir.deletion.log', 'deletion_id', string='Logs') limit = fields.Integer(string='Limit', default=100) last_elapsed_time = fields.Float(string='Last Elapsed Time', readonly=True) + last_count = fields.Integer(string='Pending', readonly=True) - def process_deletions(self): - today = fields.Date.today() - current_time = datetime.now().time() + def validate_time(self): start_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.start_time') end_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.end_time') - if start_time and end_time: start_time = datetime.strptime(start_time, '%H:%M').time() end_time = datetime.strptime(end_time, '%H:%M').time() + current_time = datetime.now().time() if not (start_time <= current_time <= end_time): _logger.info('Current time is outside the allowed range {} - {}. Modify config parameters.'.format(start_time, end_time)) - raise UserError(_('Current time is outside the allowed range {} - {}. Modify config parameters.').format(start_time, end_time)) + return False else: _logger.info('Start time or end time is not set. Logs will not be created or modified.') - raise UserError(_('Start time or end time is not set. Logs will not be created or modified.')) + return False + return True + + def process_deletions(self): + today = fields.Date.today() + current_time = datetime.now().time() + start_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.start_time') + end_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.end_time') + + if not self.validate_time(): + return for record in self.search([('active', '=', True)]): try: with self.env.cr.savepoint(): log = self.env['ir.deletion.log'].search([('deletion_id', '=', record.id), ('date', '=', today)], limit=1) + if record.sql_count_statement: + self.env.cr.execute(record.sql_count_statement) + initial_count = self.env.cr.fetchone()[0] + else: + initial_count = self.env[record.model_id.model].search_count([]) if not log: - if record.sql_count_statement: - self.env.cr.execute(record.sql_count_statement) - initial_count = self.env.cr.fetchone()[0] - else: - initial_count = self.env[record.model_id.model].search_count([]) log = self.env['ir.deletion.log'].create({ 'deletion_id': record.id, 'date': today, 'initial_count': initial_count, }) - if record.sql_count_statement: - self.env.cr.execute(record.sql_count_statement) - final_count = self.env.cr.fetchone()[0] - else: - final_count = self.env[record.model_id.model].search_count([]) - record.with_delay().process_deletion(record.model_id.id, record.id) + if initial_count: + record.with_delay().process_deletion(record.model_id.id, record.id) except Exception as e: _logger.error('Error processing deletion: %s' % e) def process_deletion(self, model_id=False, id=False): + if not self.validate_time(): + return if not model_id or not id: self.ensure_one() id = self.id @@ -91,7 +98,8 @@ def process_deletion(self, model_id=False, id=False): 'final_count': final_count, }) log_id.deletion_id.write({ - 'last_elapsed_time': last_elapsed_time + 'last_elapsed_time': last_elapsed_time, + 'last_count': final_count, }) except Exception as e: _logger.error('Error during deletion process: %s' % e) diff --git a/deletions/static/description/icon.png b/deletions/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..efe2c9efb12039e70172327e476bc808f08cbd72 GIT binary patch literal 15648 zcmd^mXFS_q^na*5s%ln?>Y(=CK~dB$HA|_{+M{9wF>ADDTU9erd)2BL8ngC@QZ-@( zt=OVLY`>51|Iz>H@9FP>m*jKrx%b@jIrn|u=iHljPYkr^X*g&=AP~Lw<449I5Gexq zQ%Rdrr<9m1z=r&0Ek*Wzaduz_h)5QE(77I5ku+F@o z`ce<^diLQxELt+MsT(AAw_S;Jh{|5`nk1-vn99ELy^ux+kzbmtBUTjBT}Van%QoXuYkqAmnToqr$y`d%+MRex_7P&G zv=|Fz@69YmfpIrUwUy)h+&gelt``=Od`}9fGKg$8Y2dJ#;EVU!QK&BO=jHx6E??XJHs7;5B!BUJ|>^6&GiHUo19gd6}6k~rSutZOYOUHDixb-AC zG;|M}n7VcMa3eNnyW6HLKqSNKM8sw%?DQnLF{SPH6B0o7advsA#m}YOm$QQx!UkQo zDyN^e+bX7d*3b3*^)DsIxT~^?v`O|>d)qGLzMciCy(2R$c{KDFwsLYFgPqPVaov7| zwXW|Xh}jrk94{8vu0GnjI3#il{C+~Ez9sg$#{O*7dPElmC^P)3Xs5y=>g{VqeR zD`)U_;Sy*kSvP4O>K%8$bm2uXF!IS7EPL^?gS_xFU5IMqkcHKGwe$)HlWcB}2>xeWIOFrk-&07y&%!>_tHgxicV-I8Ta z{b9U~G)Yv_5!?dQV1NYLJz`~3?YQI1b>rDi6uG9ZfRL|f zn$r}0{}dRnh1`5{GC!Xp;SoNHRAUwFv-h%ii11x=^MmE_n)wFntqv%e;e(-$-5wZA zjmD!n3K!ChG4Kcvq<n4%rk<38b?bn$T2q2|@G!9uORaPrY)1wRxK{AV z*7{^~8dIYj;MxWn6bNngbrmhQJbq8n$6d?1kCNg9}T2wPJ ztH1n^1jPupyIqs+ykMWV^vlOa{^1UpA^QlT`;o>>oWT{4ARqvGeQU*GviY%F>ekwk z3}9}(Pr&T)@{z%nke_9ij(f`sVc*eMkA$_7`Q)o-z|yo<{0w@!23T*vU*fsKsjq`` zZCijxn)>kxu3Vn76QH1bP&LD=NwP9oMS<(b|2515U3k0MUxq>TF})f#)f2W_x!dFY@Afw2AD59mlhmSrQX{G( z0WUkz9|!x>mz(NNK*|<3kx00h5YXE}l~LM6Y5d7vJl(ubn!%+LKXtss{8?j@X0GPY ziSoSlBVeJMdd_`kU-RC8ZVLi!2v`2^xVeg#ZU_ta zJ&0W@npt6ZBkBXt1}TGEuS^5`8^uv+5QR35naiPqzo+bA@_bmIa^FPq)6K4JqNL3h zLTwkl;;W`iX4rIN!l06%dp~O+>=Wy)GXQ+~VajOimQc`~)UZ;ootjPS34ZZS71?KR zz*|{OPABW_sf$amAFg&}5v8AhZ3{i*Cm%ig5CD^l-}-1G&!aAYs0KSJ)P8kk}2GJ;`3E&H38dEi~An8xOLN?ZTx&AJKF6WH;Vh> zJim-a^3!VY0*6p{oQ0=@3hROizd-VdI9VI#Ntl0)oT#ZR!}w(ckn?p?lQ#h`a?~h| zTv+pYt{vr5dI{;!Ug9%qDrW7x(`_sB!s^+BPX_ur6U%pdpQ|B(HTPV`ae6c$z;B9^ zapUr_H8asvL7Y2EE9j-<`ZpmoG``wb9PkidmO6IsSx#Ive@nkyb(11$S0K!`yqPR9QmpS4?DQAd}8uUQQ>|tLI zaZ;2dVX4{Pro=T*t#XKbb86*#a<_v?r09-DjKpJPb4Z!Wzj3)5SYFYt?uOwHE;HdfTk_<|`-X zHH2c_6ji!H2UBa&OuvPY3@I<5MHMw7fnQkWx^hInkC`HwQ*FuzzGSZN)5K`d)BGiB z+YX>Q%WIQ#qHlC~_MWO=ZO8p=a7?cb9L)ozuLv>o5vsuR&0MdX0i}j@PWF#LLt{(LdPw5|Ey*6bU&Dl7X5u`@i@Vk5 zdNC);&oW%O1Zpf;jBIcGZK@KXOpO3#69FpRHEZ|<63GW*JF-5j`^UKo*rXzR{OVvJ ztKdSTwde~|plwoHaN!~t@Evwq0?1PXPxivHtzhmpUE7t$`%qHvr!I$Qa0l6ltm|Ns zro^L~EdKCJNqV8nek?BMxE&xeX^}qg=Ils$7Wh!Dk&EU_yC0b$sQF$vX&NB1`UXS; zQ^%8iF(iPFe+xjdEezbsCSi;vhGm^Ut}wFyb{Urn)*s*e&%AC7enz`wFCM$FoL1E^ zteyjo8)DAAp1Y)-3Iq}3?!Tp8+~2&fn~tiRK1r8hF?9XANO5FgnDtZCL{(Tb^4;+~ z8|_2hF_*{5Y@+8LOSTRQE|G z0&@oFqqyB=8D>}k8HO>dZNj_9#W=UTAf`l3JJSAh9B)6Mm8^EoHP z_<5xu{Hq0x;#Un%^Iq}2HsNmfC>;OHg*dr5_vu&JK$h!mWltCk4=s|0lU(}L&*1j= zb@C>Lm%c{&|9$)#RU8z_C(Q(o=$N|6OlG)VbPS^V`y-X2BPFg>8FWRWQ*9sEwaPhq zq@#Ryg-og#!Ky5z>`_?l%g124aMjg6#wbl-(=n|s0BBh!{a+V6S&);6Jg^hXx(5!% zXR5A@3U+N?BQt!mPj>A0=eUzEk`MX-bT)>Jz736xB^|v>8;_;!NLdHgrP#ccGnZT-P6_B^0#F1DzImNPPbeox}0M9ZYKAdn48iU#=*8^Ckh%XvL1ix8oOQ z6Ts_i0V9Yw>taa(3H?-3i;0a(ZwX*ow2I^tdK=pvl23&gE=bdwp%^?EB-M=G%~i0}c}d+?kM%bJkh&H}`VcECPYJ$M;rM+M8L z7cXJo;4f(twFiYYzu4Jet%VqiuWCar@N)a!e1z%7D zLLLiu?qWHrw&th@0dS?MQJaV)!3xAo+i3%h=xZF_8BgQmUIYSP?y}xM`NP9$so>sM zfHi1MFg3kxAn^n&d;f>FW`h|iE6UfHaW(-cJjna-tEA0Z0agJx@d#->>0W zgQoicM=+RRS}&ZT76e*iOq6n673*z57SRAnsdch7EEyS;>!582O zz-q<-BORD3<#LDu**alllD-@utI{&>W7ZU(Zbf-g0X)iL?s!HzN*m+HtLO`uYN9l# z(-*EBgzphy9R<=PGiE|7q9sX8TjBF44?z9wg72pz%w^(ZJ*g3+5$P8%9bD3rB->n8 z5m;)@KpkSNuBr0BUuwX3BY7Ct!8%U3ADL?bBq247;z9o*h9YK6F3&?+Ghp1aZjq z1>#f_c?Q>|1)z@S3ZpV-IrZF3LnP>E#_Us>$20eGhD%|7)azzw&h^ixLsZHb&6^)@}u zB=5z6Hf?%N3_8MG7XG!X;|*I9GHE z^qM-o0U(nT$H#nGObXrHN3H}rcCO?SP@*>mfOKQ=QbB2bh;x1*??4Y;j3;I$*ZUF- zoT?0Y*HzT`^x}cEzYhprp5szzSTVE6@bmc~!1fF58-*j(7_}Cyy2R0so~0XzPpMZnXfQqekIA> z8c!}?#AbJA{$y)_=D$00Z`AmHX?HUT6dw1to5)|*WG2-138`7(2qp8sWE?DpUye-9 zW?eIR$$z$pP;mxvV(y{*j3NN^U$Ostl5|&gEj&a%f)*%FnO~Zv`?oH`^BbN#^yNDM zuCJitDYN;Yq-=4CxN-bRv*3^GHX5npn)voYpdO_I=#Hs5o;x)Z`MC0W`5I__@ z+n?MYsZqM_?Euuj>Y~XXE0Q|b8{~JoEMB{OYm+0LJ}(zLK$-hO8O=a`DJZ?DwW%s zCM(uxPAY(jJsV4%U~l(886{(?7M#+#Vq_viUw9?|Iygc|$V5%nW4P{H3RRXs)rkg3HeWhxzUhYIoV^_{o# zwov_$mLlJvQOuFJEi)X=8iDg*chu&Vf4eDypKl)ePl(zvU!C`*Wgrn1eL50 zF`MW-*Xc)1*%wDP?PRXEp`@nq9`J2Z>o= zVNF9I5S=QX4D{j}Kng)XIfeuT#C&Q{`)z>Efhhj#M%BRt3ReY~6o?Km{Qt48yQsmT zshI}Ug4FPj$m?N|tACGj-`k%ymBBj}1eFwAl}`*zGSSn*Gz*x zZS1*XCkv~x;6#JR`XBHRe!LAa{3`3lcZP7I>E09@A-bw$JEgL(pof}dh6G`?YYQk-cBEAP zX_fb%v01aB*tr4%`0ZHg^_Xw)TUS7LuY)Zug=YH$(?hmHxxB7`*6%^bqK!%6fCB<; z|GA4_amfuXP&nnD2T}?2udz3pg}YM~cWNV{M^A z30hFfJ?OV@)9weYE}7$`m4903=C6QEbnyj(vEvJ&^{+`pdCBLRWjG{gBMCxh`jocPlt%n&buS(i+~4Dbp-U(nD84 zKqy@MgteqYjuMSx4lW)05| zzp7a86cLP4qAAP)|SnagCY*~(|;<4gWEKE6TcpK<8i;klVUk|Z8A%9^} zdOR&P?2l74|?O(kU#nnR#N`C!NrCB_-T4E?Jm=@ z+7@eH?-9%w%7zP*jK4T~+4dn|H%J9oZZqxbAo64nrWiVn$}Bkfch=b!#(go}d*KP} zy|zCWlsUqV@$uXBgFf9$C>dEVm2wZsHlXmNPT}Pc=z$q&!}>DKT0!SH4=b{TW=(dM zU;SrA`cvf>Ezs%;LXEz_@iq|ak0l=IO`icl7kNQo`S(6+qIPgM0|FyoEb8d~^ypo;mHps%tdrv_=i{-%CRwmV{5O;74KQ;koX3t z(v)E3TN^xZ8qwER{t$CZu8G}eT6--M_$c~OFZU+gyd!J zId#Y5$8gI3+DEi}ql{D6WLZXT8tGXWG1nVs9je?|?%~qHIqiKY7>RV6z2*{q5Vjv0 zyes9&F_A;_V`uHbq}`7vO;2SU;=VpRMa%~_g)O_#u?1Q%xG&~j)Ri&JR|Sfz?h|NeIS~t{ zQ;Lv)p%L^zhh$9qxvx6ix;X>Z<=LUq4e6$-W%i(e9fo@`E8xA8U3rk+ZdZkCZb@O+ zcyjSi#8ril&BpkI*gsx#C{EAzD^UBqk6T1vlpitlB5%ym8NzPput8j zWr|PGDIN>pib8j4+;xjy8CFVg(~8w2vQIptLzyGv)xo_;zN7Z<3>-cR32dH-d!pz<;7gCeB>5Y9=&B#XqJd z_tr?=ENs`zKWo|@BMFobiGd^y>bkx&T@fy8i@Y=r>l50qoTgG6Q?hL zIPpxl15O;z?=yj^XkKkj4O$)XZzIo@3{IiXQFA&7qR!C;W_&VptM%5w;gHE`xbWMx z-ltjH3kjo^3H{NAxwY)@ShU+4Co*=1fp1@rM*h{}t;R+r6d(!lk{Nh@U)JJrJW{V4 zGC6EiU`vN|aze-H`@BecT@$y^txEab!tHrtk3PRY^s+A-$TE5Kf5XZ zuCS+VOm@c8#42FBpY7OxIPzmLOxYj&%xXQg?Ctn7LUKRiXE(|jQ~z%(ttr|MkJAt)9!f z0068z;cZ-BTD-Hq)y&3cr@V=@)WLWL^%fM&LFPwZ)mpKbh|nYS$3OWyPFhNpmD0ha z02#l1hNRrmqw>1>nP(T#qHKVP%2VflQd@r~7G3Mh z(U=HXTUfrlDRH=>qL-p6*?QYDYJ@;DeT|s&d?Z9k6bAw*L+j0dJ6V12#0Y`o!Hpq( zw)Z&}E7BVz_K~qwPPNl3qhT&&XA80C!HT~&l%`-VEdjjO)Gpwd_raN0ETEJGzo=uI zqJJ7<3vu?g{T|rFnMSWjC+oKt`@16w?>Ta_W0`#zaxOB4U!nBztYDRlzOGPFu7fwH zzn3z%44P;Z%wyCrbe}55)2pN3; zxA7y9nO+FKXP2S@GOuvQb8HyujqB6a?0OK$Gf7yT-MV^YrK@hvI24*h`9Ls^GR!5H zAhg}V{DoqULgehZxcQdN_gHJp?x16>7bNQNI;O*9@pRH%2E!%cE3?oL!KZ#c$7y-o zo*5tMRGBq~V6FD?;!=jd@1BfmYo5iG1-w)Go#O0GNuQ0=SXK zTPblQd*_`?g~pqXV?Akg8@f#J1gSes^1fKG=uErs&Y9B?@ind6pg&B92GK2*$N1hB z2*n~FAsWFnI$-{F4cFBkPj9yFHy1e4as%W8kEX*w@Lq7%o6x6gs7K^w1qP!tQ|N(c ze%iwHs+;`+4nIzg%1i-?+NTW$L;R-pP_l@Js!?WI%3lX0*hg8ft9=gLv?_Cn2y3L|CT8E@!>S}n=--*%{G8q z?t=Pk{4aJ_^J>Zvg}y7B&X9gj#!uTK$W^BBgJqX)f4Sdszj#Na{YchKff*IUgRYND1HT!B^qEDzY*GZpIHQxAah7ZPhm~_ z7-Kce$FuB_4WWedKigvqf!gX@g`S~^W$%x1PK`QEvS?o4@b=0h1ls_L113`wx9?Aq zTCCdnLT_Q7!<1Oe~2(+e&BS zvocyXrhA7F?)6*7+o~`h;tRr>@~kMAdr3ay(1 zFwV&vRpRNQ634FMb}ktHLWY{1@2@33p5!(1%Qhpq#>7fU%eGTclv$z^#O!iJK=8bp zC~<`N3lJYXBZNT0J~bsfxxPr&RK8BP@-4?ats{7K{FlmtgijdW(DUsXDRLn;#4H=q zdcixl<}$E)2qPp2`CU0;R$kD2$E|79eiradHUFeCT;4xq@JJafyj2~Ed4OG97*sND z7Yn9`BY27Ez;nw$W$5R+C9%293lGe}ll_zrf0T!8bfv4OhWpG}#*=*J)f+xjhNT>Z zKpTs3jw2o~Sm212!Sf#ZD(@UUeD=xxvYeKcP>JeUw#13C)opXwr&rtX99IQ$^4Zvs zSwZ=QFw?p)TA%ZZ5Wk#k21GX;e$#lLU^x!>rUxd(>4W6^Y(afdU6tJB7}wywp}(it zFw<$JDaTN5e}!3__PmD7vMqgW7GhPTlhpM>^Q&C4`UEE+ucK*pU`Hr3dq=r>sOsT| z3=@z!c2kw|9k>Cr#$RhLzpfMetu@Ux z10%(j(^$56kpAowq`R~kn{gD<^!qgrFHWZVcak$BXAVClT4O_;IY%IO$3ZUCO8OJa zpV`&lL3!u`bG+?sTrl1*x@!|6zYzP}jNcSPNFm_PXKkJ{gNx6jE4sZ;y^QEX*aVjY zOdcU4vUgHvNT;klaujitVHLy|PY1f%t{}}YXdT75YQbG3q@oGXwN+k1a+t{(b5IaY zC~onQwc(bP_rNr~JDZxZT8P|KR8AvDuk)_kItT|{b3v@`)Od`yqzk&fZB>>J0K0nmx+!!& zm@Et4;?tIvS2eoe} zp>|~U(3y79tKJq0P?;R%p$5EsX0qw%RFe&eGkJ~SNOD$&i{YG9Z-11D5FhV-b_-3o z1LN@LM$biqT&;M+!7owm4$&7?DaRJw#^p0@j9uG?U;Vi!=B7Tc^?iVorMA+f6P_oO znuR4Ef8xPBXYphKXNl4#$yC_in(LDLHvZ}Y^lQD|>s)YpM7-4x@80VEF{=|7zde7w zaZiZ#c4;W7gOML)Wt}nJ-Ckk`C@7u4&UN=8zAhwVAG)s8zWr zGG`*^i$q?%1+30|i{*>Inb{S`vRbS>8$@NNcOW1>xrZR-p=`SmTkKkt1#&DSV5ea> zLKhMxpPN4HC0HC5sF}@?I+mpY5+uH1GFgS7xt6bPiMR^M7i?aOP@JZ%g5^RsGxbxLVf&y`PxK z0cO*nnoAVUIKL79(WWfMU*Jq^m}sq9HpO(}BSTJw-8aUT+tef5`-9 z>-L5{`&5T|LVuQgd*)qi%q-vFlW{%){pHtNv_MgU_XZcHL3%x69+HEy#vp)R8X(`3TfLHN$T z4QpgaEUAgc{A`*2zIZyT-|O1*>SA^lqo=4SfXMmf&FO=p^b2iGcg0Kfrknne{}p=E zW%Y$j))wH7_R#YS`<>A`*K@zXoRWYB^Gt-ax<0q1qZq=SO)BB`6M({;#lITN8-yWjK96C#QpiD+*|sY(s0|fxC}S_vejcw z2mZNkB@ZZm%iYFys1L%)JOn=k3w2_He;(JHG_n}o*S^G&#{|dN8Lzu5??#B%&)TMReFwV!0kUIeo+StioZp-5obJ6^iw%62ez%!BK6U$tT45R!U2Y7o z=L3Pi$Y)isq~|Ohii8k$x1Cd|4BIy%3c~Ve@yg?j&quh6DLY1R8Z&KbL%!^VqnhAf zax|v@$ayleZ9LP=6c>~p6Ot;K<1pEw!i!^?b=^7qb9!V7_HxL*-h6{k0422Z6xMyf z*O&t7vU-XCT0NG#{wdeO;?u@^FLUygY^@Mi(IP;C9BtZt^bhm80aim&mnZDp{0Zp4 z@%?#+B)7E6X)X7a z**hJvETTSxfj@EwgL_I0L*rI~`{zoJwE{HvYY)ah@CpWbB1N{H1>B+K8{lrGbi$p+ zb*}RorRS9_#kENRfBKM1Hf}(6g}n_u5DvuxkW=tidDiABd-=ZV@?uU}whCmDs53&G z4_YbK@)H4gLVPqinnx%KJv)s*^7m1J7sf3fu#d5T2?X8fuB{0&bX@}v!6>J!=;q7w zK*QzGqt%lJ526Hy$UmGi+m8+Ly)#lDg4kt@Ps9egAt}+lfQN~kWBCMdi^Hv{qes)g zwe`J956srkPFEM#dB)m#@NAb#BkkJB)bJi^KliQO!JiWc+>OZ#<`!6O-Q5)iLnaICSsp?s zmQ{jH8H!u`zJ(j0%a6|Ckc+<8qLuvf4>EH0+J!ZeRfup}g#PPjCs>hn>=6Z%dWpPO zxzt*07zxAqcv7R0f+#Tw{i~Sc@A*+HQpM-_#5R?dj&bL$JpPf|!NB8zQJ*%}r{|S% z!FVDbjYbmAyvxRwmLPwXCssSL84mYHv=zD}=Io{Klc8;kejTztdCBo?oA@GgLmtUP zwCG2igiN`uCfog*-DyLW4*MmeQ-W0&{~p;L@J2c%5l+a^c7H=p9e&f?@H9Lq9zE=F zda`AGt!qmjU9an3EcG}4J>`Wq8en(G3$7gl@4k@6@a`$LdA5r_-{iLX($pTwFl;%r zvNEa+_l#$Upm1NR$)WFTu}!AtYL^{})gSun2@dq?BU$}?hQ$(-a>~8qbn^qI2BKCN zfUq4Y#5W$*mu?NGZGE4J2>S8VeBjoA)I#YLBFy(O#LHWYF_k#Wea^5v`Z2HD>j9DH zpf*A=^M0LRY+>^8j}y_L=N(|^3OhJ7V@hY%TCfSJQWAGcoKU+GJW!q80rL3+Th-TVO=3g(mRY# z*{X@EuoZ$&pN5}!@xXKTxGscBmXrr1i>qbCqS1{=TzqsAQS`=l_)BZdn&s?6Rh0)CZ0c(NCKHqUw=M~nulN1G~THC=oQY1^F-9mG}$xqWrT&3dZdRoM{7 zNe*_m?Y7Rd{-Qt#kFQzMA>@h1zjX!T(cMcW*$V;NC+94D9H(jIt^0vHD)AI@X7m@H z2Dpk;;7W9G=J?s<4|Nq(ai_nL#d^m=F{z?5|F5$Q3<>2=igU{;=6uvk1*M!fPG1Lx z1EUGO@;3_UTG+m^tJT+X7kZjYd4&h`9>WU-fDC7c#!@=F0(zL{&z%%{A#J-dKFobw zXo^V-!ZYkD(`+2xYtzIz{X!|zdR{?)-tx{?DOV!e3@ks0cR~#te{Z`ULseXz0rjV; z3>qn<*qM7za+?E_U*hxZ(XWVU_XhJ(R@-=rwu{WFD^8`HIpfxd#h<(UyKjH(4V^31 zYp7F>N(ootWxSoHw^}Ywd%JL9Oc85gA+5DZ1&%1ro4iisg%6+`EWwHK)^I&4W7kpar z!2Q$a0#b?T?&H*N*H7;7{XFM9Fw#amxe3ib*eVAoT=TUP@-vXF)&N(C?w8e!9abss z)qZ!G4d3%p>`{GoRj)8yvsge$Z+^axCu!kvW>@2lL=XM=7)@%#a9X$cQ@O1*;F#&? zETFtpjj;zuTwHmy!q^5dy=f197Ks1F5Vpd1@z3m8!18SlRmkpqmd?$?s;ocNKq>5< z?7(12ADyz3I9HM4u0SCPP{Di!XRxD2*v1DhZ$*^{I?Kll75@eJ=?B>88g``b->6;Xf6YT=o^ zY~V!o=FX$tv-=lE2DyKCeH|`1%Et{x=xHl|-AuTCw9;Ar3qcqYL|Z%$x?SgS64Z%$ zPV-*#%}hgx_y?YVR%k}>DxDQm24RHFsZojM6adzqbs)l69y)I9Lqoo{*Lx^(f6Pex zk;a*cl&!Jr1gg7^yzW-{gHx|+rwvS$O%X+l1)oxvUC1O1!X%C*ITaf@EnB}XO*4ZN zU>PmDWypU8GxCwnz5)3h3=YPDnK4HrBHhf4_Ip|rAsjYezsVh)DkE}Onn}dXt%7od zn^}Sd6!_zeG@|W)(SKX};eWLSIcrkZEGpEOt5>xg{JmcHjT7Oo-5PI3%;a;goF9oE zY|uqL?{?}fF8Cd7a4#EZl%~QB7cc`D|K~TrU7urL?vC8q6U!@+DVGs%UX4;F z>NDeBGDpR+Y<)3+1}bFDzxKcSK)8o)7k_iZD7odk-qZ zQ8MN$L7i@s;kZy?EHgfm)SzUQLVr0@Ll8B5SpSVveuO}`_Ne1BBF@tU$B0jf2jxF+Z;(@2d-#Ahhx*52-P;#20DTS3@97n1vS=m9fy z&EjR@!L>Gc`=Vk-RvJ2L8I>XTeOVtLT2B`}zuC+bzi|F?6~erhd11YQ7%Uae9)3l9 z8UM4Ol#_Tea;@YEDSj&SG*cSwg`NCTkzI$vwo$>nEklfhztVN;BQX zn`)hPDKlnjfHbdln=>m*9O3&hdg6O@{QP;*{P`F{F0ovNmY5%ya~8~%%A0yp{a!eM zY~M}USi!=o*#{6pWGxD<+rfLP^?veM;-yh%g;ek>?*en;XwT9c7Y`7q_RhR~wrLd7 zB|QL2!6^+~s*te_>U9ZD56ikK^_DH>Wzpc{&cZUp71_^wFMyp-G*MA3q_QD~b3R5#_|yLH^F*%W~% zgSwOJ3u`mTWG_(#6|>d_>t-9GPkQF0E=RZd$|or1E<~U z2B?VS8X|$_7Zb^zPO&)O5hA6&`2(w+#_Nq7($)I0{Uav>59g{5h=|S~0?2jBTRuJl zGO3;xjWnoFxHlBM%Jut(F2RF*lvbF+0P->TcDRj;xc94itIo^g5%yD2pz3FH%PY+@ zy}o1N;k@yeDbbo-SBwmO1Q>{mFbA2ekhE#5XO=+4O){q@#HguN(N9cJC9^>>MIm&D`L+&o? z$PU`g3UzNU^FovElCF-Bg{liuj>vaFV6;59>vsb9&R_HWj4{-HIlW}c{55WMGl2_? z18yKN$@ZIVVx;%y2fpXdg+Vo}DT_SW~@_;F^M;U7cx|izlZ- zLai{4;3rtE@9w=u`b@~r%0vYYCbCNWT(2W6go|YCgjCQhUwe&@k$$O z?JE2dEHd0ZnI1V*wRO+$cLiqVCa%1SP{lefw$@9a#2D3NX@$Lq6&17!8?&Y<&;-`V z)idZ{o1fZUF7=+b_MZekF(lceB1q0o>#CW2u z0dmQaNBx#QzdAD$SoFHxp3V0$eF)$AtunS0&jjLYhwsT0>u^_I`S^w5?^gn!{AY++Kb5l0g#U%j{pDw literal 0 HcmV?d00001 diff --git a/deletions/views/ir_deletion_views.xml b/deletions/views/ir_deletion_views.xml index 4b5b900..1c46c81 100644 --- a/deletions/views/ir_deletion_views.xml +++ b/deletions/views/ir_deletion_views.xml @@ -23,6 +23,7 @@ + @@ -39,6 +40,7 @@ + From c14384edcc0280646b8c6ef3470db373669af3e9 Mon Sep 17 00:00:00 2001 From: Sergio Lop Sanz Date: Wed, 2 Apr 2025 11:48:43 +0200 Subject: [PATCH 05/15] Pepocho changes --- deletions/__manifest__.py | 2 +- deletions/models/ir_deletion.py | 50 ++++++++++++++++++++--------- deletions/models/ir_deletion_log.py | 7 +++- 3 files changed, 41 insertions(+), 18 deletions(-) diff --git a/deletions/__manifest__.py b/deletions/__manifest__.py index a066866..e5ed30d 100644 --- a/deletions/__manifest__.py +++ b/deletions/__manifest__.py @@ -2,7 +2,7 @@ 'name': 'Deletions', 'version': '12.0.1.0.0', 'summary': 'Módulo para gestionar eliminaciones masivas de datos', - 'author': 'Tu Nombre', + 'author': 'Fernando La Chica ', 'category': 'Tools', 'depends': ['base', 'queue_job'], 'data': [ diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py index 6d200dd..3c43e63 100644 --- a/deletions/models/ir_deletion.py +++ b/deletions/models/ir_deletion.py @@ -7,6 +7,7 @@ _logger = logging.getLogger(__name__) + class IRDeletion(models.Model): _name = 'ir.deletion' _description = 'IR Deletion' @@ -22,26 +23,34 @@ class IRDeletion(models.Model): last_count = fields.Integer(string='Pending', readonly=True) def validate_time(self): - start_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.start_time') - end_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.end_time') + start_time = self.env['ir.config_parameter'].sudo().get_param( + 'ir.deletion.start_time') + end_time = self.env['ir.config_parameter'].sudo().get_param( + 'ir.deletion.end_time') if start_time and end_time: start_time = datetime.strptime(start_time, '%H:%M').time() end_time = datetime.strptime(end_time, '%H:%M').time() current_time = datetime.now().time() if not (start_time <= current_time <= end_time): - _logger.info('Current time is outside the allowed range {} - {}. Modify config parameters.'.format(start_time, end_time)) + _logger.info( + 'Current time is outside the allowed range' + ' {} - {}. Modify config parameters.' + .format(start_time, end_time)) return False else: - _logger.info('Start time or end time is not set. Logs will not be created or modified.') + _logger.info('Start time or end time is not set. ' + 'Logs will not be created or modified.') return False return True def process_deletions(self): today = fields.Date.today() current_time = datetime.now().time() - start_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.start_time') - end_time = self.env['ir.config_parameter'].sudo().get_param('ir.deletion.end_time') + start_time = self.env['ir.config_parameter'].sudo().get_param( + 'ir.deletion.start_time') + end_time = self.env['ir.config_parameter'].sudo().get_param( + 'ir.deletion.end_time') if not self.validate_time(): return @@ -49,12 +58,15 @@ def process_deletions(self): for record in self.search([('active', '=', True)]): try: with self.env.cr.savepoint(): - log = self.env['ir.deletion.log'].search([('deletion_id', '=', record.id), ('date', '=', today)], limit=1) + log = self.env['ir.deletion.log'].search([ + ('deletion_id', '=', record.id), + ('date', '=', today)], limit=1) if record.sql_count_statement: self.env.cr.execute(record.sql_count_statement) initial_count = self.env.cr.fetchone()[0] else: - initial_count = self.env[record.model_id.model].search_count([]) + initial_count = self.env[ + record.model_id.model].search_count([]) if not log: log = self.env['ir.deletion.log'].create({ 'deletion_id': record.id, @@ -62,7 +74,8 @@ def process_deletions(self): 'initial_count': initial_count, }) if initial_count: - record.with_delay().process_deletion(record.model_id.id, record.id) + record.with_delay().process_deletion( + record.model_id.id, record.id) except Exception as e: _logger.error('Error processing deletion: %s' % e) @@ -79,21 +92,28 @@ def process_deletion(self, model_id=False, id=False): deletion_id = self.env['ir.deletion'].browse(id) try: with self.env.cr.savepoint(): - self.env.cr.execute(deletion_id.sql_statement + ' LIMIT %s', (self.limit,)) + self.env.cr.execute( + deletion_id.sql_statement + ' LIMIT %s', (self.limit,)) for record in self.env.cr.dictfetchall(): - _logger.info('Deleting %s with ID: %s' % (model_name, record['id'])) + _logger.info('Deleting %s with ID: %s' % ( + model_name, record['id'])) model_id = self.env[model_name].browse(record['id']) if model_id: model_id.unlink() - last_elapsed_time = (datetime.now() - start_datetime).total_seconds() + last_elapsed_time = ( + datetime.now() - start_datetime).total_seconds() final_count = 0 if deletion_id.sql_count_statement: self.env.cr.execute(deletion_id.sql_count_statement) final_count = self.env.cr.fetchone()[0] else: - final_count = self.env[deletion_id.model_id.model].search_count([]) + final_count = self.env[ + deletion_id.model_id.model].search_count([]) - log_id = self.env['ir.deletion.log'].search([('deletion_id', '=', id), ('date', '=', fields.Date.today())], limit=1) + log_id = self.env['ir.deletion.log'].search([ + ('deletion_id', '=', id), + ('date', '=', fields.Date.today()) + ], limit=1) log_id.write({ 'final_count': final_count, }) @@ -108,5 +128,3 @@ def action_view_logs(self): action = self.env.ref('deletions.action_view_logs').read()[0] action['domain'] = [('deletion_id', '=', self.id)] return action - - diff --git a/deletions/models/ir_deletion_log.py b/deletions/models/ir_deletion_log.py index da4bae9..13ced7a 100644 --- a/deletions/models/ir_deletion_log.py +++ b/deletions/models/ir_deletion_log.py @@ -1,11 +1,16 @@ from odoo import models, fields, api from datetime import date + class IRDeletionLog(models.Model): _name = 'ir.deletion.log' _description = 'IR Deletion Log' - deletion_id = fields.Many2one('ir.deletion', string='Deletion', required=True, ondelete='cascade') + deletion_id = fields.Many2one( + 'ir.deletion', + string='Deletion', + required=True, + ondelete='cascade') date = fields.Date(string='Date', default=fields.Date.today, required=True) initial_count = fields.Integer(string='Initial Count', readonly=True) final_count = fields.Integer(string='Final Count', readonly=True) From 1af84669ff07442df5fec6c89b2e8bd9ccb24a15 Mon Sep 17 00:00:00 2001 From: Sergio Lop Sanz Date: Wed, 2 Apr 2025 11:53:33 +0200 Subject: [PATCH 06/15] Pepocho changes --- deletions/models/__init__.py | 1 + deletions/models/ir_deletion.py | 12 ++---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/deletions/models/__init__.py b/deletions/models/__init__.py index 8b1358c..1b086e9 100644 --- a/deletions/models/__init__.py +++ b/deletions/models/__init__.py @@ -1,2 +1,3 @@ from . import ir_deletion from . import ir_deletion_log + diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py index 3c43e63..eaec5cf 100644 --- a/deletions/models/ir_deletion.py +++ b/deletions/models/ir_deletion.py @@ -1,9 +1,7 @@ -from odoo import models, fields, api, _ +from odoo import models, fields import logging from datetime import datetime -from odoo.exceptions import UserError - _logger = logging.getLogger(__name__) @@ -46,11 +44,6 @@ def validate_time(self): def process_deletions(self): today = fields.Date.today() - current_time = datetime.now().time() - start_time = self.env['ir.config_parameter'].sudo().get_param( - 'ir.deletion.start_time') - end_time = self.env['ir.config_parameter'].sudo().get_param( - 'ir.deletion.end_time') if not self.validate_time(): return @@ -85,8 +78,7 @@ def process_deletion(self, model_id=False, id=False): if not model_id or not id: self.ensure_one() id = self.id - model_id = self.model_id.id - + model_id = self.model_id.id start_datetime = datetime.now() model_name = self.env['ir.model'].browse(model_id).model deletion_id = self.env['ir.deletion'].browse(id) From 1743e58b2f5cbe067ca9ede793cca2f1e3427bd4 Mon Sep 17 00:00:00 2001 From: Sergio Lop Sanz Date: Wed, 2 Apr 2025 11:57:37 +0200 Subject: [PATCH 07/15] Pepocho changes --- deletions/__init__.py | 2 +- deletions/models/__init__.py | 1 - deletions/models/ir_deletion.py | 2 +- deletions/models/ir_deletion_log.py | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/deletions/__init__.py b/deletions/__init__.py index 9a7e03e..0650744 100644 --- a/deletions/__init__.py +++ b/deletions/__init__.py @@ -1 +1 @@ -from . import models \ No newline at end of file +from . import models diff --git a/deletions/models/__init__.py b/deletions/models/__init__.py index 1b086e9..8b1358c 100644 --- a/deletions/models/__init__.py +++ b/deletions/models/__init__.py @@ -1,3 +1,2 @@ from . import ir_deletion from . import ir_deletion_log - diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py index eaec5cf..043b9e5 100644 --- a/deletions/models/ir_deletion.py +++ b/deletions/models/ir_deletion.py @@ -77,7 +77,7 @@ def process_deletion(self, model_id=False, id=False): return if not model_id or not id: self.ensure_one() - id = self.id + id = self.id model_id = self.model_id.id start_datetime = datetime.now() model_name = self.env['ir.model'].browse(model_id).model diff --git a/deletions/models/ir_deletion_log.py b/deletions/models/ir_deletion_log.py index 13ced7a..23ab7b6 100644 --- a/deletions/models/ir_deletion_log.py +++ b/deletions/models/ir_deletion_log.py @@ -1,5 +1,4 @@ -from odoo import models, fields, api -from datetime import date +from odoo import models, fields class IRDeletionLog(models.Model): @@ -11,6 +10,7 @@ class IRDeletionLog(models.Model): string='Deletion', required=True, ondelete='cascade') + date = fields.Date(string='Date', default=fields.Date.today, required=True) initial_count = fields.Integer(string='Initial Count', readonly=True) final_count = fields.Integer(string='Final Count', readonly=True) From 86e6795b263600d95a3eed7d37092e8223f8ac34 Mon Sep 17 00:00:00 2001 From: Sergio Lop Sanz Date: Wed, 2 Apr 2025 11:59:04 +0200 Subject: [PATCH 08/15] Pepocho changes --- deletions/models/ir_deletion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deletions/models/ir_deletion.py b/deletions/models/ir_deletion.py index 043b9e5..5244e51 100644 --- a/deletions/models/ir_deletion.py +++ b/deletions/models/ir_deletion.py @@ -115,7 +115,7 @@ def process_deletion(self, model_id=False, id=False): }) except Exception as e: _logger.error('Error during deletion process: %s' % e) - + def action_view_logs(self): action = self.env.ref('deletions.action_view_logs').read()[0] action['domain'] = [('deletion_id', '=', self.id)] From c913b2d58cd13d4165cc3da13f00dbb6357fd001 Mon Sep 17 00:00:00 2001 From: "Fernando La Chica (Sidoo SDi. Digital Group)" Date: Wed, 9 Jul 2025 17:39:48 +0200 Subject: [PATCH 09/15] SSO con Azure AD para Odoo 12.0 --- auth_oauth/README.md | 17 + auth_oauth/__init__.py | 5 + auth_oauth/__manifest__.py | 22 + auth_oauth/controllers/__init__.py | 4 + auth_oauth/controllers/main.py | 195 +++++++++ auth_oauth/data/auth_oauth_data.xml | 41 ++ auth_oauth/i18n/af.po | 229 ++++++++++ auth_oauth/i18n/am.po | 228 ++++++++++ auth_oauth/i18n/ar.po | 264 ++++++++++++ auth_oauth/i18n/auth_oauth.pot | 248 +++++++++++ auth_oauth/i18n/az.po | 250 +++++++++++ auth_oauth/i18n/bg.po | 260 ++++++++++++ auth_oauth/i18n/bn.po | 255 +++++++++++ auth_oauth/i18n/bs.po | 256 ++++++++++++ auth_oauth/i18n/ca.po | 262 ++++++++++++ auth_oauth/i18n/cs.po | 260 ++++++++++++ auth_oauth/i18n/da.po | 262 ++++++++++++ auth_oauth/i18n/de.po | 259 ++++++++++++ auth_oauth/i18n/el.po | 260 ++++++++++++ auth_oauth/i18n/en_AU.po | 395 ++++++++++++++++++ auth_oauth/i18n/en_GB.po | 228 ++++++++++ auth_oauth/i18n/es.po | 260 ++++++++++++ auth_oauth/i18n/es_BO.po | 228 ++++++++++ auth_oauth/i18n/es_CL.po | 228 ++++++++++ auth_oauth/i18n/es_CO.po | 228 ++++++++++ auth_oauth/i18n/es_CR.po | 228 ++++++++++ auth_oauth/i18n/es_DO.po | 228 ++++++++++ auth_oauth/i18n/es_EC.po | 228 ++++++++++ auth_oauth/i18n/es_PE.po | 228 ++++++++++ auth_oauth/i18n/es_PY.po | 228 ++++++++++ auth_oauth/i18n/es_VE.po | 228 ++++++++++ auth_oauth/i18n/et.po | 262 ++++++++++++ auth_oauth/i18n/eu.po | 259 ++++++++++++ auth_oauth/i18n/fa.po | 256 ++++++++++++ auth_oauth/i18n/fi.po | 264 ++++++++++++ auth_oauth/i18n/fil.po | 250 +++++++++++ auth_oauth/i18n/fo.po | 228 ++++++++++ auth_oauth/i18n/fr.po | 260 ++++++++++++ auth_oauth/i18n/fr_BE.po | 395 ++++++++++++++++++ auth_oauth/i18n/fr_CA.po | 228 ++++++++++ auth_oauth/i18n/gl.po | 228 ++++++++++ auth_oauth/i18n/gu.po | 256 ++++++++++++ auth_oauth/i18n/he.po | 260 ++++++++++++ auth_oauth/i18n/hr.po | 261 ++++++++++++ auth_oauth/i18n/hu.po | 262 ++++++++++++ auth_oauth/i18n/id.po | 265 ++++++++++++ auth_oauth/i18n/is.po | 256 ++++++++++++ auth_oauth/i18n/it.po | 261 ++++++++++++ auth_oauth/i18n/ja.po | 258 ++++++++++++ auth_oauth/i18n/ka.po | 258 ++++++++++++ auth_oauth/i18n/kab.po | 254 +++++++++++ auth_oauth/i18n/km.po | 258 ++++++++++++ auth_oauth/i18n/ko.po | 258 ++++++++++++ auth_oauth/i18n/lo.po | 225 ++++++++++ auth_oauth/i18n/lt.po | 265 ++++++++++++ auth_oauth/i18n/lv.po | 256 ++++++++++++ auth_oauth/i18n/mk.po | 228 ++++++++++ auth_oauth/i18n/mn.po | 259 ++++++++++++ auth_oauth/i18n/nb.po | 255 +++++++++++ auth_oauth/i18n/ne.po | 225 ++++++++++ auth_oauth/i18n/nl.po | 260 ++++++++++++ auth_oauth/i18n/nl_BE.po | 228 ++++++++++ auth_oauth/i18n/pl.po | 259 ++++++++++++ auth_oauth/i18n/pt.po | 260 ++++++++++++ auth_oauth/i18n/pt_BR.po | 266 ++++++++++++ auth_oauth/i18n/ro.po | 259 ++++++++++++ auth_oauth/i18n/ru.po | 259 ++++++++++++ auth_oauth/i18n/sk.po | 261 ++++++++++++ auth_oauth/i18n/sl.po | 260 ++++++++++++ auth_oauth/i18n/so.po | 250 +++++++++++ auth_oauth/i18n/sq.po | 228 ++++++++++ auth_oauth/i18n/sr.po | 255 +++++++++++ auth_oauth/i18n/sr@latin.po | 231 ++++++++++ auth_oauth/i18n/sv.po | 260 ++++++++++++ auth_oauth/i18n/ta.po | 259 ++++++++++++ auth_oauth/i18n/th.po | 258 ++++++++++++ auth_oauth/i18n/tr.po | 263 ++++++++++++ auth_oauth/i18n/uk.po | 259 ++++++++++++ auth_oauth/i18n/vi.po | 260 ++++++++++++ auth_oauth/i18n/zh_CN.po | 256 ++++++++++++ auth_oauth/i18n/zh_TW.po | 257 ++++++++++++ auth_oauth/models/__init__.py | 7 + auth_oauth/models/auth_oauth.py | 23 + auth_oauth/models/ir_config_parameter.py | 17 + auth_oauth/models/res_config_settings.py | 39 ++ auth_oauth/models/res_users.py | 134 ++++++ auth_oauth/security/ir.model.access.csv | 2 + auth_oauth/static/src/scss/auth_oauth.scss | 17 + auth_oauth/views/auth_oauth_templates.xml | 44 ++ auth_oauth/views/auth_oauth_views.xml | 45 ++ .../views/res_config_settings_views.xml | 37 ++ auth_oauth/views/res_users_views.xml | 20 + 92 files changed, 19695 insertions(+) create mode 100644 auth_oauth/README.md create mode 100644 auth_oauth/__init__.py create mode 100644 auth_oauth/__manifest__.py create mode 100644 auth_oauth/controllers/__init__.py create mode 100644 auth_oauth/controllers/main.py create mode 100644 auth_oauth/data/auth_oauth_data.xml create mode 100644 auth_oauth/i18n/af.po create mode 100644 auth_oauth/i18n/am.po create mode 100644 auth_oauth/i18n/ar.po create mode 100644 auth_oauth/i18n/auth_oauth.pot create mode 100644 auth_oauth/i18n/az.po create mode 100644 auth_oauth/i18n/bg.po create mode 100644 auth_oauth/i18n/bn.po create mode 100644 auth_oauth/i18n/bs.po create mode 100644 auth_oauth/i18n/ca.po create mode 100644 auth_oauth/i18n/cs.po create mode 100644 auth_oauth/i18n/da.po create mode 100644 auth_oauth/i18n/de.po create mode 100644 auth_oauth/i18n/el.po create mode 100644 auth_oauth/i18n/en_AU.po create mode 100644 auth_oauth/i18n/en_GB.po create mode 100644 auth_oauth/i18n/es.po create mode 100644 auth_oauth/i18n/es_BO.po create mode 100644 auth_oauth/i18n/es_CL.po create mode 100644 auth_oauth/i18n/es_CO.po create mode 100644 auth_oauth/i18n/es_CR.po create mode 100644 auth_oauth/i18n/es_DO.po create mode 100644 auth_oauth/i18n/es_EC.po create mode 100644 auth_oauth/i18n/es_PE.po create mode 100644 auth_oauth/i18n/es_PY.po create mode 100644 auth_oauth/i18n/es_VE.po create mode 100644 auth_oauth/i18n/et.po create mode 100644 auth_oauth/i18n/eu.po create mode 100644 auth_oauth/i18n/fa.po create mode 100644 auth_oauth/i18n/fi.po create mode 100644 auth_oauth/i18n/fil.po create mode 100644 auth_oauth/i18n/fo.po create mode 100644 auth_oauth/i18n/fr.po create mode 100644 auth_oauth/i18n/fr_BE.po create mode 100644 auth_oauth/i18n/fr_CA.po create mode 100644 auth_oauth/i18n/gl.po create mode 100644 auth_oauth/i18n/gu.po create mode 100644 auth_oauth/i18n/he.po create mode 100644 auth_oauth/i18n/hr.po create mode 100644 auth_oauth/i18n/hu.po create mode 100644 auth_oauth/i18n/id.po create mode 100644 auth_oauth/i18n/is.po create mode 100644 auth_oauth/i18n/it.po create mode 100644 auth_oauth/i18n/ja.po create mode 100644 auth_oauth/i18n/ka.po create mode 100644 auth_oauth/i18n/kab.po create mode 100644 auth_oauth/i18n/km.po create mode 100644 auth_oauth/i18n/ko.po create mode 100644 auth_oauth/i18n/lo.po create mode 100644 auth_oauth/i18n/lt.po create mode 100644 auth_oauth/i18n/lv.po create mode 100644 auth_oauth/i18n/mk.po create mode 100644 auth_oauth/i18n/mn.po create mode 100644 auth_oauth/i18n/nb.po create mode 100644 auth_oauth/i18n/ne.po create mode 100644 auth_oauth/i18n/nl.po create mode 100644 auth_oauth/i18n/nl_BE.po create mode 100644 auth_oauth/i18n/pl.po create mode 100644 auth_oauth/i18n/pt.po create mode 100644 auth_oauth/i18n/pt_BR.po create mode 100644 auth_oauth/i18n/ro.po create mode 100644 auth_oauth/i18n/ru.po create mode 100644 auth_oauth/i18n/sk.po create mode 100644 auth_oauth/i18n/sl.po create mode 100644 auth_oauth/i18n/so.po create mode 100644 auth_oauth/i18n/sq.po create mode 100644 auth_oauth/i18n/sr.po create mode 100644 auth_oauth/i18n/sr@latin.po create mode 100644 auth_oauth/i18n/sv.po create mode 100644 auth_oauth/i18n/ta.po create mode 100644 auth_oauth/i18n/th.po create mode 100644 auth_oauth/i18n/tr.po create mode 100644 auth_oauth/i18n/uk.po create mode 100644 auth_oauth/i18n/vi.po create mode 100644 auth_oauth/i18n/zh_CN.po create mode 100644 auth_oauth/i18n/zh_TW.po create mode 100644 auth_oauth/models/__init__.py create mode 100644 auth_oauth/models/auth_oauth.py create mode 100644 auth_oauth/models/ir_config_parameter.py create mode 100644 auth_oauth/models/res_config_settings.py create mode 100644 auth_oauth/models/res_users.py create mode 100644 auth_oauth/security/ir.model.access.csv create mode 100644 auth_oauth/static/src/scss/auth_oauth.scss create mode 100644 auth_oauth/views/auth_oauth_templates.xml create mode 100644 auth_oauth/views/auth_oauth_views.xml create mode 100644 auth_oauth/views/res_config_settings_views.xml create mode 100644 auth_oauth/views/res_users_views.xml diff --git a/auth_oauth/README.md b/auth_oauth/README.md new file mode 100644 index 0000000..bbb31ea --- /dev/null +++ b/auth_oauth/README.md @@ -0,0 +1,17 @@ +El SSO estandar Odoo no funciona con Azure AD + +Hay que poner el repositorio de este módulo delante de los addons Odoo (como se hace habitualmente). Con ello conseguimos que Odoo cargue nuestra funcionalidad en lugar de la estándar. + +Configuración +================ + +Solicitar la creación de una aplicación en Azure AD SIN las marcas de "Tokens de acceso de usuario" ni "Tokens de ID" en la sección "Flujos de concesión e híbridos". + +1. Ir a Ajustes > Usuarios y Compañías > Proveedores de OAuth +2. Crear un nuevo proveedor de OAuth con los siguientes datos: + - Nombre: Azure + - Id. de cliente: (ID de la aplicación creada en Azure AD) + - Contenido: Azure (es el código para el botón de inicio de sesión) + - URL de autorización: https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize + - Ámbito: openid profile email + - URL de validación: https://graph.microsoft.com/oidc/userinfo \ No newline at end of file diff --git a/auth_oauth/__init__.py b/auth_oauth/__init__.py new file mode 100644 index 0000000..7d34c7c --- /dev/null +++ b/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/auth_oauth/__manifest__.py b/auth_oauth/__manifest__.py new file mode 100644 index 0000000..d6308f4 --- /dev/null +++ b/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': '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/auth_oauth/controllers/__init__.py b/auth_oauth/controllers/__init__.py new file mode 100644 index 0000000..5d4b25d --- /dev/null +++ b/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/auth_oauth/controllers/main.py b/auth_oauth/controllers/main.py new file mode 100644 index 0000000..3d1a6b5 --- /dev/null +++ b/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 """""" + 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/auth_oauth/data/auth_oauth_data.xml b/auth_oauth/data/auth_oauth_data.xml new file mode 100644 index 0000000..67c1c98 --- /dev/null +++ b/auth_oauth/data/auth_oauth_data.xml @@ -0,0 +1,41 @@ + + + + + Odoo.com Accounts + https://accounts.odoo.com/oauth2/auth + userinfo + https://accounts.odoo.com/oauth2/tokeninfo + + fa fa-fw o_custom_icon + Log in with Odoo.com + + + + Facebook Graph + https://www.facebook.com/dialog/oauth + public_profile,email + https://graph.facebook.com/me + https://graph.facebook.com/me?fields=id,name,email + fa fa-fw fa-facebook-square + Log in with Facebook + + + Google OAuth2 + https://accounts.google.com/o/oauth2/auth + https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile + https://www.googleapis.com/oauth2/v1/tokeninfo + https://www.googleapis.com/oauth2/v1/userinfo + fa fa-fw fa-google-plus-square + Log in with Google + + + + + + + + + diff --git a/auth_oauth/i18n/af.po b/auth_oauth/i18n/af.po new file mode 100644 index 0000000..75bdd7a --- /dev/null +++ b/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 , 2017 +# Andre de Kock , 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 , 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 "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/auth_oauth/i18n/am.po b/auth_oauth/i18n/am.po new file mode 100644 index 0000000..1e96317 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/ar.po b/auth_oauth/i18n/ar.po new file mode 100644 index 0000000..a8aa47e --- /dev/null +++ b/auth_oauth/i18n/ar.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Akram Alfusayal , 2018 +# amrnegm , 2018 +# Martin Trigaux, 2018 +# hoxhe Aits , 2018 +# Ghaith Gammar , 2018 +# Osama Ahmaro , 2018 +# Ali Alrehawi , 2018 +# Mustafa Rawi , 2019 +# Rachid Al Assir , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Rachid Al Assir , 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 "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 "دالة 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 "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 +#: sql_constraint:res.users:0 +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: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 "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/auth_oauth/i18n/auth_oauth.pot b/auth_oauth/i18n/auth_oauth.pot new file mode 100644 index 0000000..0f3c925 --- /dev/null +++ b/auth_oauth/i18n/auth_oauth.pot @@ -0,0 +1,248 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2019-11-14 07:34+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 "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,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 +#: 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/auth_oauth/i18n/az.po b/auth_oauth/i18n/az.po new file mode 100644 index 0000000..09bdd2b --- /dev/null +++ b/auth_oauth/i18n/az.po @@ -0,0 +1,250 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+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 "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,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 +#: 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/auth_oauth/i18n/bg.po b/auth_oauth/i18n/bg.po new file mode 100644 index 0000000..071f0c5 --- /dev/null +++ b/auth_oauth/i18n/bg.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# aleksandar ivanov, 2019 +# Albena Mincheva , 2019 +# Maria Boyadjieva , 2019 +# Igor Sheludko , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Igor Sheludko , 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 "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 "Позволете на потребителите да се регистрират в 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 "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 "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 +#: sql_constraint:res.users:0 +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: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 "Валидиране URL" + +#. 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 "e.g. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/bn.po b/auth_oauth/i18n/bn.po new file mode 100644 index 0000000..4fbd874 --- /dev/null +++ b/auth_oauth/i18n/bn.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# Abu Zafar , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Abu Zafar , 2019\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 "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,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 +#: 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/auth_oauth/i18n/bs.po b/auth_oauth/i18n/bs.po new file mode 100644 index 0000000..619132e --- /dev/null +++ b/auth_oauth/i18n/bs.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Bole , 2018 +# Boško Stojaković , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Boško Stojaković , 2019\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 "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 "Postavke konfiguracije" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__data_endpoint +msgid "Data 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,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 +#: 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 "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 "" + +#. 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/auth_oauth/i18n/ca.po b/auth_oauth/i18n/ca.po new file mode 100644 index 0000000..4d9f811 --- /dev/null +++ b/auth_oauth/i18n/ca.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Bàrbara Partegàs , 2018 +# Quim - eccit , 2018 +# Manel Fernandez , 2018 +# Arnau Ros, 2019 +# M Palau , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: M Palau , 2019\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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Mostrar Nom" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/cs.po b/auth_oauth/i18n/cs.po new file mode 100644 index 0000000..ae2f541 --- /dev/null +++ b/auth_oauth/i18n/cs.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Jan Horzinka , 2018 +# Michal Veselý , 2018 +# trendspotter, 2019 +# karolína schusterová , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: karolína schusterová , 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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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řil(a)" + +#. 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ý název" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Google Authentication" +msgstr "Ověření Google" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/da.po b/auth_oauth/i18n/da.po new file mode 100644 index 0000000..06825ce --- /dev/null +++ b/auth_oauth/i18n/da.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Morten Schou , 2018 +# Jesper Carstensen , 2018 +# Pernille Kristensen , 2018 +# lhmflexerp , 2018 +# Sanne Kristensen , 2018 +# JonathanStein , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: JonathanStein , 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 "Tutorial" +msgstr "Vejledning" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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 "Rækkefølge" + +#. 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:98 +#, 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: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 "" +"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/auth_oauth/i18n/de.po b/auth_oauth/i18n/de.po new file mode 100644 index 0000000..b919a6a --- /dev/null +++ b/auth_oauth/i18n/de.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Johannes Croe , 2018 +# Andreas Perhab , 2019 +# Chris Egal , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Chris Egal , 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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/el.po b/auth_oauth/i18n/el.po new file mode 100644 index 0000000..24d0f30 --- /dev/null +++ b/auth_oauth/i18n/el.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +# Alexandros Kapetanios , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Alexandros Kapetanios , 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 "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 "Επιτρέπει τους χρήστες να συνδεθούν μέσω 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 "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 +#: sql_constraint:res.users:0 +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: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 "Διεύθυνση URL επικύρωσης" + +#. 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 "" +"Δεν έχετε πρόσβαση σε αυτήν τη βάση δεδομένων ή η πρόσκλησή σας έχει λήξει. " +"Παρακαλώ ζητήσετε μια πρόσκληση και φροντίστε να ακολουθήσετε το σύνδεσμο " +"στο 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/auth_oauth/i18n/en_AU.po b/auth_oauth/i18n/en_AU.po new file mode 100644 index 0000000..81644d5 --- /dev/null +++ b/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 "" +"
\n" +" - Create a new project
\n" +" - Go to Api Access
\n" +" - Create an oauth client_id
\n" +" - Edit settings and set both Authorized " +"Redirect URIs and Authorized JavaScript Origins to your hostname.
\n" +"
\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:
\n" +"
\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/auth_oauth/i18n/en_GB.po b/auth_oauth/i18n/en_GB.po new file mode 100644 index 0000000..f7eb6ed --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es.po b/auth_oauth/i18n/es.po new file mode 100644 index 0000000..034ec90 --- /dev/null +++ b/auth_oauth/i18n/es.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Cristopher Cravioto , 2018 +# Jon Perez , 2019 +# Platon BJS , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Platon BJS , 2019\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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 ingresar 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 "URL Autenticación" + +#. 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 "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 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 a mostrar" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Google Authentication" +msgstr "Autenticación 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ó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 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 "Palabra de acceso (token) OAuth" + +#. 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 +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "El id. de usuario OAuth debe ser único por proveedor" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Id. 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 "Id. 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 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 "Ámbito" + +#. 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:98 +#, 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: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 "" +"No tiene acceso a esta base de datos o su invitación ha expirado. Por favor " +"pida una invitación y asegúrese de pulsar 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 "arquitectura" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "e.g. 1234-xyz.apps.googleusercontent.com" +msgstr "ej.. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/es_BO.po b/auth_oauth/i18n/es_BO.po new file mode 100644 index 0000000..74e94b7 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_CL.po b/auth_oauth/i18n/es_CL.po new file mode 100644 index 0000000..2c8f2b3 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_CO.po b/auth_oauth/i18n/es_CO.po new file mode 100644 index 0000000..872bfca --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_CR.po b/auth_oauth/i18n/es_CR.po new file mode 100644 index 0000000..26fe7ca --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_DO.po b/auth_oauth/i18n/es_DO.po new file mode 100644 index 0000000..e42f253 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_EC.po b/auth_oauth/i18n/es_EC.po new file mode 100644 index 0000000..3a8e33c --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_PE.po b/auth_oauth/i18n/es_PE.po new file mode 100644 index 0000000..929f414 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_PY.po b/auth_oauth/i18n/es_PY.po new file mode 100644 index 0000000..3954d18 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/es_VE.po b/auth_oauth/i18n/es_VE.po new file mode 100644 index 0000000..087d97e --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/et.po b/auth_oauth/i18n/et.po new file mode 100644 index 0000000..3020bf1 --- /dev/null +++ b/auth_oauth/i18n/et.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Wanradt Koell , 2018 +# Arma Gedonsky , 2018 +# Egon Raamat , 2018 +# Martin Aavastik , 2018 +# Helen Sulaoja , 2018 +# Eneli Õigus , 2020 +# Martin Talts , 2021 +# Triine Aavik , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Triine Aavik , 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 "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Loomise kuupäev" + +#. 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 "Näidatav nimi" + +#. 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 (millal)" + +#. 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 +#: 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 "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: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 "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: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/auth_oauth/i18n/eu.po b/auth_oauth/i18n/eu.po new file mode 100644 index 0000000..d43c952 --- /dev/null +++ b/auth_oauth/i18n/eu.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# oihane , 2019 +# Eneko , 2019 +# Naomi Hidalgo , 2019 +# Victor Laskurain , 2019 +# Maialen Rodriguez , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Maialen Rodriguez , 2020\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 "Tutorial" +msgstr "Tutoriala" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: 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 "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:98 +#, 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: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 "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/auth_oauth/i18n/fa.po b/auth_oauth/i18n/fa.po new file mode 100644 index 0000000..41d6630 --- /dev/null +++ b/auth_oauth/i18n/fa.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Hamid Darabi, 2018 +# Hamed Mohammadi , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Hamed Mohammadi , 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 "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 "آدرس 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 "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 +#: 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/auth_oauth/i18n/fi.po b/auth_oauth/i18n/fi.po new file mode 100644 index 0000000..55e4ae7 --- /dev/null +++ b/auth_oauth/i18n/fi.po @@ -0,0 +1,264 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Eino Mäkitalo , 2018 +# Martin Trigaux, 2018 +# Kari Lindgren , 2018 +# Miku Laitinen , 2018 +# Tuomo Aura , 2018 +# Veikko Väätäjä , 2018 +# Heikki Katajisto , 2018 +# Johanna Valkonen , 2019 +# Jarmo Kortetjärvi , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 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 "Tutorial" +msgstr "Käyttöohje" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 kirjautumisen Google tunnuksillaan" + +#. 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 "Konfiguraatio-asetukset" + +#. 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 "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äivittänyt" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/fil.po b/auth_oauth/i18n/fil.po new file mode 100644 index 0000000..e066f6f --- /dev/null +++ b/auth_oauth/i18n/fil.po @@ -0,0 +1,250 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Language-Team: Filipino (https://www.transifex.com/odoo/teams/41243/fil/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fil\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\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 "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,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 +#: 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/auth_oauth/i18n/fo.po b/auth_oauth/i18n/fo.po new file mode 100644 index 0000000..59bc029 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/fr.po b/auth_oauth/i18n/fr.po new file mode 100644 index 0000000..d410969 --- /dev/null +++ b/auth_oauth/i18n/fr.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Marie Willemyns , 2018 +# Cécile Collart , 2020 +# Jonathan Quique , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Jonathan Quique , 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 "Tutorial" +msgstr "Tutoriel" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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 courriel 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/auth_oauth/i18n/fr_BE.po b/auth_oauth/i18n/fr_BE.po new file mode 100644 index 0000000..ba4b20c --- /dev/null +++ b/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 "" +"
\n" +" - Create a new project
\n" +" - Go to Api Access
\n" +" - Create an oauth client_id
\n" +" - Edit settings and set both Authorized " +"Redirect URIs and Authorized JavaScript Origins to your hostname.
\n" +"
\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:
\n" +"
\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/auth_oauth/i18n/fr_CA.po b/auth_oauth/i18n/fr_CA.po new file mode 100644 index 0000000..035a00b --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/gl.po b/auth_oauth/i18n/gl.po new file mode 100644 index 0000000..b5adf28 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/gu.po b/auth_oauth/i18n/gu.po new file mode 100644 index 0000000..065333a --- /dev/null +++ b/auth_oauth/i18n/gu.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel , 2018 +# Dharmraj Jhala , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Dharmraj Jhala , 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 "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,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 +#: 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/auth_oauth/i18n/he.po b/auth_oauth/i18n/he.po new file mode 100644 index 0000000..f3ae20a --- /dev/null +++ b/auth_oauth/i18n/he.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# ExcaliberX , 2018 +# Yihya Hugirat , 2018 +# hed shefetr , 2018 +# דודי מלכה , 2019 +# ZVI BLONDER , 2019 +# david danilov, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: david danilov, 2021\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 "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,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 +#: 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/auth_oauth/i18n/hr.po b/auth_oauth/i18n/hr.po new file mode 100644 index 0000000..dd77ac3 --- /dev/null +++ b/auth_oauth/i18n/hr.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# Vladimir Olujić , 2019 +# Đurđica Žarković , 2019 +# Karolina Tonković , 2019 +# Tina Milas, 2019 +# Bole , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Bole , 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 "Tutorial" +msgstr "Upute" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 za prikaz" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/hu.po b/auth_oauth/i18n/hu.po new file mode 100644 index 0000000..f8e5d77 --- /dev/null +++ b/auth_oauth/i18n/hu.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# krnkris, 2018 +# Ákos Nagy , 2018 +# Tibor Kőnig , 2018 +# Daniel Gerstenbrand , 2019 +# Tamás Németh , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Tamás Németh , 2019\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 "Tutorial" +msgstr "Oktatás" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "URL elérési út hitelesítés" + +#. 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 "Konfigurációs beállítások" + +#. 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 "Megjelenített név" + +#. 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 frissítve" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_uid +msgid "Last Updated by" +msgstr "Legutóbb frissítette" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__write_date +msgid "Last Updated on" +msgstr "Legutóbb 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 +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "OAuth UID egyedinek kell lennie mindegyik szolgáltatóhoz" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "OAuth felhasználó ID 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 felhasználó_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 uri" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:98 +#, 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 "URL elérési út érvényesítés" + +#. 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 "" +"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/auth_oauth/i18n/id.po b/auth_oauth/i18n/id.po new file mode 100644 index 0000000..c4afb6d --- /dev/null +++ b/auth_oauth/i18n/id.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# William Surya Permana , 2019 +# Martin Trigaux, 2019 +# Wahyu Setiawan , 2019 +# oon arfiandwi , 2019 +# Bonny Useful , 2019 +# Febrasari Almania , 2019 +# Ryanto The , 2019 +# PAS IRVANUS , 2019 +# Abdul Munif Hanafi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Abdul Munif Hanafi , 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 "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Config Settings" + +#. 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 "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 +#: sql_constraint:res.users:0 +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 "Penomoran" + +#. 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 "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: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 "" +"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/auth_oauth/i18n/is.po b/auth_oauth/i18n/is.po new file mode 100644 index 0000000..4e5dc23 --- /dev/null +++ b/auth_oauth/i18n/is.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson , 2018 +# Björn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Björn Ingvarsson , 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 "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,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 +#: 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/auth_oauth/i18n/it.po b/auth_oauth/i18n/it.po new file mode 100644 index 0000000..9edf66c --- /dev/null +++ b/auth_oauth/i18n/it.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Paolo Valier, 2018 +# Pietro Della Notte , 2018 +# Léonie Bouchat , 2019 +# Sergio Zanchetta , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Sergio Zanchetta , 2020\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 "Tutorial" +msgstr "Guida utente" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 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 "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 "Creato il" + +#. 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 "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 "Provider 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 "Provider OAuth" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "L'UID OAuth deve essere univoco per provider" + +#. 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 "Provider 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 provider 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:98 +#, python-format +msgid "Sign up is not allowed on this database." +msgstr "Accesso non consentito a questo database." + +#. 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: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 "" +"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/auth_oauth/i18n/ja.po b/auth_oauth/i18n/ja.po new file mode 100644 index 0000000..300c1d0 --- /dev/null +++ b/auth_oauth/i18n/ja.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Yoshi Tashiro , 2018 +# Manami Hashi , 2018 +# Norimichi Sugimoto , 2018 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+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 "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 "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 "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 +#: sql_constraint:res.users:0 +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: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 "確認URL" + +#. 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 "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/auth_oauth/i18n/ka.po b/auth_oauth/i18n/ka.po new file mode 100644 index 0000000..7e3d5ab --- /dev/null +++ b/auth_oauth/i18n/ka.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Saba Khmaladze , 2019 +# Martin Trigaux, 2019 +# Temur, 2019 +# Giorgi Melitauri , 2019 +# Gvantsa Gvinianidze , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Gvantsa Gvinianidze , 2019\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 "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,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 +#: 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/auth_oauth/i18n/kab.po b/auth_oauth/i18n/kab.po new file mode 100644 index 0000000..86533d5 --- /dev/null +++ b/auth_oauth/i18n/kab.po @@ -0,0 +1,254 @@ +# 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 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2018\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.providers +msgid "- or -" +msgstr "" + +#. module: auth_oauth +#: model_terms:ir.ui.view,arch_db:auth_oauth.res_config_settings_view_form +msgid "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, python-format +msgid "Access Denied" +msgstr "Anekcum igdel" + +#. 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 "Asesteb URL" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__body +msgid "Body" +msgstr "Tafekka" + +#. 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 "Asulay n umsaɣ" + +#. 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 "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 "URL n isefka" + +#. 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,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 "Aseǧǧaw 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 "Iseǧǧawen OAuth" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "Isefk asulay n useqdac ad yili d asuf s useǧǧaw" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_res_users__oauth_uid +msgid "OAuth User ID" +msgstr "Asulay n useqdac OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "Aseǧǧaw 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 "Asulay n useqdac n useǧǧaw Oauth" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__name +msgid "Provider name" +msgstr "Isem n useǧǧaw" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Iseǧǧwen" + +#. 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_ir_config_parameter +msgid "System Parameter" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Iseqdacen" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__validation_endpoint +msgid "Validation URL" +msgstr "URL n useɣbel" + +#. 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 "Amedya. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/km.po b/auth_oauth/i18n/km.po new file mode 100644 index 0000000..9b92536 --- /dev/null +++ b/auth_oauth/i18n/km.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Sengtha Chay , 2018 +# Chan Nath , 2018 +# Lux Sok , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Lux Sok , 2019\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 "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 "អនុញ្ញាតឱ្យអ្នកប្រើចូលជាមួយ 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 "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.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 +#: sql_constraint:res.users:0 +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: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 "URL សុពលភាព" + +#. 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 "ឧ។ 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/ko.po b/auth_oauth/i18n/ko.po new file mode 100644 index 0000000..1e44156 --- /dev/null +++ b/auth_oauth/i18n/ko.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Link Up링크업 , 2018 +# Linkup , 2018 +# Seongseok Shin , 2018 +# JH CHOI , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: JH CHOI , 2019\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 "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 "사용자가 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 "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 +#: sql_constraint:res.users:0 +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: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 "검증 URL" + +#. 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 "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/auth_oauth/i18n/lo.po b/auth_oauth/i18n/lo.po new file mode 100644 index 0000000..fdc0830 --- /dev/null +++ b/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 "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/auth_oauth/i18n/lt.po b/auth_oauth/i18n/lt.po new file mode 100644 index 0000000..4012fce --- /dev/null +++ b/auth_oauth/i18n/lt.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Aleksandr Jadov , 2018 +# Martin Trigaux, 2018 +# UAB "Draugiški sprendimai" , 2018 +# Anatolij, 2018 +# Silvija Butko , 2018 +# Audrius Palenskis , 2018 +# Monika Raciunaite , 2018 +# digitouch UAB , 2018 +# Linas Versada , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Linas Versada , 2019\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 "Tutorial" +msgstr "Instrukcija" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, python-format +msgid "Access Denied" +msgstr "Prieiga uždrausta" + +#. 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/lv.po b/auth_oauth/i18n/lv.po new file mode 100644 index 0000000..c08b769 --- /dev/null +++ b/auth_oauth/i18n/lv.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# Arnis Putniņš , 2019 +# ievaputnina , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: ievaputnina , 2019\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 "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Displeja nosaukums" + +#. 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 +#: 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ērija" + +#. 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 "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: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/auth_oauth/i18n/mk.po b/auth_oauth/i18n/mk.po new file mode 100644 index 0000000..11ccaa9 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/mn.po b/auth_oauth/i18n/mn.po new file mode 100644 index 0000000..0996a2d --- /dev/null +++ b/auth_oauth/i18n/mn.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Baskhuu Lodoikhuu , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Baskhuu Lodoikhuu , 2019\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 "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 "Хэрэглэгчдийг 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 "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 +#: sql_constraint:res.users:0 +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: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 "Баталгаажуулах URL" + +#. 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 "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/auth_oauth/i18n/nb.po b/auth_oauth/i18n/nb.po new file mode 100644 index 0000000..5e9e86d --- /dev/null +++ b/auth_oauth/i18n/nb.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Marius Stedjan , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Marius Stedjan , 2018\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 "Tutorial" +msgstr "Innføring" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Google Authentication" +msgstr "Google-autentisering" + +#. module: auth_oauth +#: model:ir.model.fields,field_description:auth_oauth.field_auth_oauth_provider__id +msgid "ID" +msgstr "IDID" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "for eksempel 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/ne.po b/auth_oauth/i18n/ne.po new file mode 100644 index 0000000..a49e9a8 --- /dev/null +++ b/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 "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/auth_oauth/i18n/nl.po b/auth_oauth/i18n/nl.po new file mode 100644 index 0000000..6dfd508 --- /dev/null +++ b/auth_oauth/i18n/nl.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Thomas Pot , 2018 +# Erwin van der Ploeg , 2018 +# Yenthe Van Ginneken , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Yenthe Van Ginneken , 2019\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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/nl_BE.po b/auth_oauth/i18n/nl_BE.po new file mode 100644 index 0000000..572c7d1 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/pl.po b/auth_oauth/i18n/pl.po new file mode 100644 index 0000000..5d16b75 --- /dev/null +++ b/auth_oauth/i18n/pl.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Marcin Młynarczyk , 2018 +# Andrzej Donczew , 2018 +# Radosław Biegalski , 2018 +# Maksym , 2018 +# Piotr Strębski , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Piotr Strębski , 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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Data utworzenia" + +#. 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 "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 +#: sql_constraint:res.users:0 +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: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 "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: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 "np. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/pt.po b/auth_oauth/i18n/pt.po new file mode 100644 index 0000000..f0f83f9 --- /dev/null +++ b/auth_oauth/i18n/pt.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# cafonso , 2018 +# Martin Trigaux, 2018 +# Manuela Silva , 2018 +# Diogo Fonseca , 2018 +# Pedro Castro Silva , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Pedro Castro Silva , 2019\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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "config 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 "Criada 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 a Exibir" + +#. 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 "Token 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/pt_BR.po b/auth_oauth/i18n/pt_BR.po new file mode 100644 index 0000000..1f1398f --- /dev/null +++ b/auth_oauth/i18n/pt_BR.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo , 2018 +# Martin Trigaux, 2018 +# Mateus Lopes , 2018 +# Wagner Pereira , 2018 +# grazziano , 2018 +# André Augusto Firmino Cordeiro , 2018 +# Marina Jacques , 2018 +# Silmar , 2018 +# Marcelo Costa , 2019 +# Fernando Colus , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Fernando Colus , 2020\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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 a usuários logar 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 "Ajuste de 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 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 "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 +#: sql_constraint:res.users:0 +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 "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 do servidor" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:98 +#, 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: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 "" +"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/auth_oauth/i18n/ro.po b/auth_oauth/i18n/ro.po new file mode 100644 index 0000000..da12690 --- /dev/null +++ b/auth_oauth/i18n/ro.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Dorin Hongu , 2020 +# Foldi Robert , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Foldi Robert , 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 "Tutorial" +msgstr "Ghid" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/ru.po b/auth_oauth/i18n/ru.po new file mode 100644 index 0000000..4e06ee8 --- /dev/null +++ b/auth_oauth/i18n/ru.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Vasiliy Korobatov , 2019 +# Ivan Yelizariev , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Ivan Yelizariev , 2019\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 "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 "Разрешить вход при помощи учетной записи 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 "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 +#: sql_constraint:res.users:0 +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: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 "URL валидации" + +#. 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 "например 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/sk.po b/auth_oauth/i18n/sk.po new file mode 100644 index 0000000..62f18ea --- /dev/null +++ b/auth_oauth/i18n/sk.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Jaroslav Bosansky , 2018 +# gebri , 2018 +# Jan Prokop, 2018 +# Rastislav Brencic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Rastislav Brencic , 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 "Tutorial" +msgstr "Príručka" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Nastavenie 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 "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á modifikácia" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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 "Použí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: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 "" +"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/auth_oauth/i18n/sl.po b/auth_oauth/i18n/sl.po new file mode 100644 index 0000000..eb62743 --- /dev/null +++ b/auth_oauth/i18n/sl.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2019 +# laznikd , 2019 +# matjaz k , 2019 +# Boris Kodelja , 2019 +# Matjaz Mozetic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Matjaz Mozetic , 2020\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 "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/so.po b/auth_oauth/i18n/so.po new file mode 100644 index 0000000..aa4a0b2 --- /dev/null +++ b/auth_oauth/i18n/so.po @@ -0,0 +1,250 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Language-Team: Somali (https://www.transifex.com/odoo/teams/41243/so/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: so\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 "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,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 +#: 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/auth_oauth/i18n/sq.po b/auth_oauth/i18n/sq.po new file mode 100644 index 0000000..b719247 --- /dev/null +++ b/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 , 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 , 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 "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/auth_oauth/i18n/sr.po b/auth_oauth/i18n/sr.po new file mode 100644 index 0000000..87243a7 --- /dev/null +++ b/auth_oauth/i18n/sr.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Uros Kalajdzic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Uros Kalajdzic , 2020\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 "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 "Kreirano" + +#. 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,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 +#: 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/auth_oauth/i18n/sr@latin.po b/auth_oauth/i18n/sr@latin.po new file mode 100644 index 0000000..00d6c0d --- /dev/null +++ b/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 , 2017 +# Martin Trigaux , 2017 +# Nemanja Dragovic , 2017 +# Ljubisa Jovev , 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 , 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 "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/auth_oauth/i18n/sv.po b/auth_oauth/i18n/sv.po new file mode 100644 index 0000000..9b2d80e --- /dev/null +++ b/auth_oauth/i18n/sv.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Kristoffer Grundström , 2019 +# Martin Trigaux, 2019 +# Anders Wallenquist , 2019 +# Kim Asplund , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Kim Asplund , 2019\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 "Tutorial" +msgstr "" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Konfigurations Instä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 "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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/ta.po b/auth_oauth/i18n/ta.po new file mode 100644 index 0000000..5c7cd8e --- /dev/null +++ b/auth_oauth/i18n/ta.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Bagavathikumar Ramakrishnan , 2019 +# Abul Hassan M I , 2019 +# Alagappan Karthikeyan , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Alagappan Karthikeyan , 2019\n" +"Language-Team: Tamil (https://www.transifex.com/odoo/teams/41243/ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_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 "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 "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 "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 அணுகல் டோக்கன்" + +#. 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 +#: sql_constraint:res.users:0 +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 "Oauth வழங்குநர் user_id" + +#. 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 "சரிபார்ப்பு URL" + +#. 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 "எ.கா. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/th.po b/auth_oauth/i18n/th.po new file mode 100644 index 0000000..366570f --- /dev/null +++ b/auth_oauth/i18n/th.po @@ -0,0 +1,258 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang , 2018 +# gsong , 2018 +# Somchart Jabsung , 2018 +# Odoo Thaidev , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Odoo Thaidev , 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 "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 "อนุญาตให้ผู้ใช้เข้าใช้งานจากบัญชี 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 "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 +#: 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 "ผู้ให้บริการ 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: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 "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/auth_oauth/i18n/tr.po b/auth_oauth/i18n/tr.po new file mode 100644 index 0000000..05101bf --- /dev/null +++ b/auth_oauth/i18n/tr.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Levent Karakaş , 2018 +# Murat Kaplan , 2018 +# Ahmet Altinisik , 2018 +# Buket Şeker , 2018 +# Ediz Duman , 2018 +# Umur Akın , 2019 +# Murat Durmuş , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Murat Durmuş , 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 "Tutorial" +msgstr "Öğretici" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "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 "Konfigürasyon 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 "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 Güncelleme" + +#. 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 Access Token" + +#. 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 +#: sql_constraint:res.users:0 +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:98 +#, 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: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 "" +"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/auth_oauth/i18n/uk.po b/auth_oauth/i18n/uk.po new file mode 100644 index 0000000..ef3b3ff --- /dev/null +++ b/auth_oauth/i18n/uk.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# Alina Lisnenko , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Alina Lisnenko , 2019\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 "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 "Дозволити користувачам заходити через 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 "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 +#: sql_constraint:res.users:0 +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: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 "URL підтвердження" + +#. 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 "e.g. 1234-xyz.apps.googleusercontent.com" diff --git a/auth_oauth/i18n/vi.po b/auth_oauth/i18n/vi.po new file mode 100644 index 0000000..02634a4 --- /dev/null +++ b/auth_oauth/i18n/vi.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# fanha99 , 2018 +# Dao Nguyen , 2019 +# Nancy Momoland , 2020 +# Trần Hà , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Trần Hà , 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 "Tutorial" +msgstr "Tutorial" + +#. module: auth_oauth +#: code:addons/auth_oauth/controllers/main.py:100 +#, 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 "Được 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 "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 +#: sql_constraint:res.users:0 +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 "Thứ 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:98 +#, 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: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 "" +"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/auth_oauth/i18n/zh_CN.po b/auth_oauth/i18n/zh_CN.po new file mode 100644 index 0000000..7c6221b --- /dev/null +++ b/auth_oauth/i18n/zh_CN.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# niulin lnc. , 2018 +# liAnGjiA , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: liAnGjiA , 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 "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 "允许用户通过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 "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 +#: sql_constraint:res.users:0 +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: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 "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/auth_oauth/i18n/zh_TW.po b/auth_oauth/i18n/zh_TW.po new file mode 100644 index 0000000..7280e85 --- /dev/null +++ b/auth_oauth/i18n/zh_TW.po @@ -0,0 +1,257 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_oauth +# +# Translators: +# Martin Trigaux, 2018 +# 敬雲 林 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-14 07:34+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: 敬雲 林 , 2019\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 "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 "允許使用者通過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 "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 +#: sql_constraint:res.users:0 +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: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 "" +"您無權訪問此資料庫或者您的邀請已經過期.\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/auth_oauth/models/__init__.py b/auth_oauth/models/__init__.py new file mode 100644 index 0000000..381d9c8 --- /dev/null +++ b/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/auth_oauth/models/auth_oauth.py b/auth_oauth/models/auth_oauth.py new file mode 100644 index 0000000..ae74510 --- /dev/null +++ b/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 = '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() diff --git a/auth_oauth/models/ir_config_parameter.py b/auth_oauth/models/ir_config_parameter.py new file mode 100644 index 0000000..6a302e2 --- /dev/null +++ b/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/auth_oauth/models/res_config_settings.py b/auth_oauth/models/res_config_settings.py new file mode 100644 index 0000000..0c20ab6 --- /dev/null +++ b/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/auth_oauth/models/res_users.py b/auth_oauth/models/res_users.py new file mode 100644 index 0000000..0aec728 --- /dev/null +++ b/auth_oauth/models/res_users.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import json +from wsgiref import headers +import logging + +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') + +_logger = logging.getLogger(__name__) + +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): + headers = { + 'Authorization': f'Bearer {access_token}', + 'Accept': 'application/json', + } + return requests.get(endpoint, headers=headers).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): + # Omito comportamiento por defecto. Tiraba del user_id del que no dispongo en esta configuración Azure para Heráclito + """ 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. + """ + email = validation.get('email', 'not_found') + try: + oauth_user = self.search([("login", "=", email), ('oauth_provider_id', '=', provider)]) + if not oauth_user: + oauth_user = self.search([("login", "=", email)]) + if not oauth_user: + raise AccessDenied('No user found for this OAuth provider and email {}.'.format(email)) + if len(oauth_user) != 1: + _logger.warning('Multiple users found for OAuth provider %s and email %s. Using the first one.', provider, email) + oauth_user = oauth_user[0] + oauth_user.write({'oauth_access_token': params['access_token'], 'oauth_provider_id': provider}) + 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('email'): + # 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): + try: + return super(ResUsers, self)._check_credentials(password) + except AccessDenied: + res = self.sudo().search([('id', '=', self.env.uid), ('oauth_access_token', '=', password)]) + if not res: + raise + + def _get_session_token_fields(self): + return super(ResUsers, self)._get_session_token_fields() | {'oauth_access_token'} diff --git a/auth_oauth/security/ir.model.access.csv b/auth_oauth/security/ir.model.access.csv new file mode 100644 index 0000000..65fd2f5 --- /dev/null +++ b/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/auth_oauth/static/src/scss/auth_oauth.scss b/auth_oauth/static/src/scss/auth_oauth.scss new file mode 100644 index 0000000..3225d52 --- /dev/null +++ b/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/auth_oauth/views/auth_oauth_templates.xml b/auth_oauth/views/auth_oauth_templates.xml new file mode 100644 index 0000000..529bd8f --- /dev/null +++ b/auth_oauth/views/auth_oauth_templates.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + diff --git a/auth_oauth/views/auth_oauth_views.xml b/auth_oauth/views/auth_oauth_views.xml new file mode 100644 index 0000000..0419c1c --- /dev/null +++ b/auth_oauth/views/auth_oauth_views.xml @@ -0,0 +1,45 @@ + + + + auth.oauth.provider.form + auth.oauth.provider + +
+ + + + + + + + + + + + + + +
+
+
+ + auth.oauth.provider.tree + auth.oauth.provider + + + + + + + + + + Providers + auth.oauth.provider + form + tree,form + + +
diff --git a/auth_oauth/views/res_config_settings_views.xml b/auth_oauth/views/res_config_settings_views.xml new file mode 100644 index 0000000..88f33a6 --- /dev/null +++ b/auth_oauth/views/res_config_settings_views.xml @@ -0,0 +1,37 @@ + + + + res.config.settings.view.form.inherit.auth.oauth + res.config.settings + + +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
diff --git a/auth_oauth/views/res_users_views.xml b/auth_oauth/views/res_users_views.xml new file mode 100644 index 0000000..13e7bdb --- /dev/null +++ b/auth_oauth/views/res_users_views.xml @@ -0,0 +1,20 @@ + + + + res.users.form.inherit + res.users + form + + + + + + + + + + + + + + From c5063d018782b765f7f79b8e21c9ba2d83bee236 Mon Sep 17 00:00:00 2001 From: "Fernando La Chica (Sidoo SDi. Digital Group)" Date: Wed, 9 Jul 2025 17:45:10 +0200 Subject: [PATCH 10/15] Quito pre-commit oauth --- .pre-commit-config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1ff529c..cd1dedd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,5 @@ +exclude: '^auth_oauth/' + repos: - repo: https://github.com/pycqa/flake8 rev: 3.9.1 From 1370f6266696f9c71f52efb6aaaf04c6ab8fc473 Mon Sep 17 00:00:00 2001 From: "Fernando La Chica (Sidoo SDi. Digital Group)" Date: Wed, 9 Jul 2025 17:59:41 +0200 Subject: [PATCH 11/15] Readme --- auth_oauth/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/auth_oauth/README.md b/auth_oauth/README.md index bbb31ea..039b413 100644 --- a/auth_oauth/README.md +++ b/auth_oauth/README.md @@ -7,8 +7,9 @@ Configuración Solicitar la creación de una aplicación en Azure AD SIN las marcas de "Tokens de acceso de usuario" ni "Tokens de ID" en la sección "Flujos de concesión e híbridos". -1. Ir a Ajustes > Usuarios y Compañías > Proveedores de OAuth -2. Crear un nuevo proveedor de OAuth con los siguientes datos: +1. Entrar en Odoo en modo desarrollador (Activar el modo desarrollador en la URL añadiendo `?debug=1`). +2. Ir a Ajustes > Usuarios y Compañías > Proveedores de OAuth +3. Crear un nuevo proveedor de OAuth con los siguientes datos: - Nombre: Azure - Id. de cliente: (ID de la aplicación creada en Azure AD) - Contenido: Azure (es el código para el botón de inicio de sesión) From df1d66f260fba7624cfe2f408d870507c647b576 Mon Sep 17 00:00:00 2001 From: "Fernando La Chica (Sidoo SDi. Digital Group)" Date: Thu, 10 Jul 2025 10:08:03 +0200 Subject: [PATCH 12/15] Forzar ssl para dominios distintos a localhost --- auth_oauth/controllers/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth_oauth/controllers/main.py b/auth_oauth/controllers/main.py index 3d1a6b5..972cf86 100644 --- a/auth_oauth/controllers/main.py +++ b/auth_oauth/controllers/main.py @@ -58,6 +58,8 @@ def list_providers(self): providers = [] for provider in providers: return_url = request.httprequest.url_root + 'auth_oauth/signin' + if not return_url.startswith('http://localhost:'): + return_url = return_url.replace('http://', 'https://') state = self.get_state(provider) params = dict( response_type='token', From dd4257dcbfadd3d4f53e5d7f862fae18b36b44a4 Mon Sep 17 00:00:00 2001 From: "Fernando La Chica (Sidoo SDi. Digital Group)" Date: Thu, 10 Jul 2025 11:04:14 +0200 Subject: [PATCH 13/15] Vista erronea --- auth_oauth/views/auth_oauth_templates.xml | 75 +++++++++++------------ 1 file changed, 37 insertions(+), 38 deletions(-) diff --git a/auth_oauth/views/auth_oauth_templates.xml b/auth_oauth/views/auth_oauth_templates.xml index 529bd8f..03d395e 100644 --- a/auth_oauth/views/auth_oauth_templates.xml +++ b/auth_oauth/views/auth_oauth_templates.xml @@ -1,44 +1,43 @@ - + - + - + - + - - + + \ No newline at end of file From f941073068f07e7aa1ad8bccc2e5a1366abf6ddb Mon Sep 17 00:00:00 2001 From: Sergio Lop Sanz Date: Thu, 23 Oct 2025 00:20:05 +0200 Subject: [PATCH 14/15] =?UTF-8?q?Mensaje=20de=20reclamaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sdi_account_payment_return/README.md | 26 ++++++++++++ sdi_account_payment_return/__init__.py | 1 + sdi_account_payment_return/__manifest__.py | 13 ++++++ .../data/mail_templates.xml | 39 +++++++++++++++++ sdi_account_payment_return/models/__init__.py | 4 ++ .../models/payment_return.py | 40 ++++++++++++++++++ .../static/description/icon.png | Bin 0 -> 9250 bytes .../views/payment_return_views.xml | 18 ++++++++ 8 files changed, 141 insertions(+) create mode 100644 sdi_account_payment_return/README.md create mode 100644 sdi_account_payment_return/__init__.py create mode 100644 sdi_account_payment_return/__manifest__.py create mode 100644 sdi_account_payment_return/data/mail_templates.xml create mode 100644 sdi_account_payment_return/models/__init__.py create mode 100644 sdi_account_payment_return/models/payment_return.py create mode 100644 sdi_account_payment_return/static/description/icon.png create mode 100644 sdi_account_payment_return/views/payment_return_views.xml diff --git a/sdi_account_payment_return/README.md b/sdi_account_payment_return/README.md new file mode 100644 index 0000000..4861c0e --- /dev/null +++ b/sdi_account_payment_return/README.md @@ -0,0 +1,26 @@ +# sdi_account_payment_return + +## Instalación + +1. Copia la carpeta `sdi_account_payment_return` en tu directorio de addons. +2. Actualiza la lista de aplicaciones en Odoo. +3. Instala el módulo desde el panel de aplicaciones. + +## Configuración + +1. Ve a **Ajustes Técnicos → Parámetros del sistema**. +2. Crea o edita el parámetro: + - **Clave:** `sdi_account_payment_return.payment_return_mail_template_id` + - **Valor:** ID de la plantilla de correo a usar (puedes obtenerlo desde la vista de plantillas de correo). + +Si el parámetro no está definido o está vacío, el módulo usará la plantilla por defecto con el ID externo `sdi_account_payment_return.default_payment_return_email_template`. + +## Uso + +- Al registrar una devolución de pago, el sistema enviará un correo usando la plantilla configurada. +- El historial de correos enviados se adjuntará como nota en el registro de devolución. + +## Notas + +- Asegúrate de que la plantilla de correo tenga el destinatario configurado correctamente. +- Si necesitas personalizar la plantilla, edítala desde **Ajustes → Plantillas de correo**. diff --git a/sdi_account_payment_return/__init__.py b/sdi_account_payment_return/__init__.py new file mode 100644 index 0000000..9a7e03e --- /dev/null +++ b/sdi_account_payment_return/__init__.py @@ -0,0 +1 @@ +from . import models \ No newline at end of file diff --git a/sdi_account_payment_return/__manifest__.py b/sdi_account_payment_return/__manifest__.py new file mode 100644 index 0000000..6352f64 --- /dev/null +++ b/sdi_account_payment_return/__manifest__.py @@ -0,0 +1,13 @@ +{ + 'name': 'Mejoras Account Payment Return', + 'version': '12.0.1.0.0', + 'depends': ['account_payment_return'], + 'author': 'Sergio Lop Sanz ', + 'category': 'Accounting', + 'description': 'Mejoras y extensiones para payment return', + 'data': [ + 'data/mail_templates.xml', + 'views/payment_return_views.xml', + ], + 'installable': True, +} \ No newline at end of file diff --git a/sdi_account_payment_return/data/mail_templates.xml b/sdi_account_payment_return/data/mail_templates.xml new file mode 100644 index 0000000..c481915 --- /dev/null +++ b/sdi_account_payment_return/data/mail_templates.xml @@ -0,0 +1,39 @@ + + + + Notificación devolución de recibo + + ${(user.email_formatted or '')|safe} + ${object.partner_id.email|safe} + Devolución de recibo ${object.name or ''} + + Estimado/a ${object.partner_id.name},

+

Le informamos que nuestro banco nos ha notificado la devolución del recibo ${object.reference or ''} con un importe de + ${'{:,.2f}'.format(object.amount).replace(',', 'X').replace('.', ',').replace('X', '.') if object.amount else ''} €

+

Fecha de la devolución: ${object.date.strftime('%d-%m-%Y') if object.date else ''}

+

El motivo de la devolución indicado fue: ${object.reason_id.name or ''}

+ %if object.move_line_ids and len(object.move_line_ids) > 0 +

Correspondía a los siguientes movimientos:

+ + + + + + + % for move in object.move_line_ids.bank_payment_line_id.payment_line_ids: + + + + + + % endfor +
ReferenciaVencimientoImporte
${move.communication}${move.ml_maturity_date.strftime('%d-%m-%Y') if move.ml_maturity_date else ''}${'{:,.2f}'.format(move.amount_currency).replace(',', 'X').replace('.', ',').replace('X', '.') if move.amount_currency else ''} €
+ % endif +

+

Para cualquier consulta, no dude en contactarnos.

+ ]]> +
+ +
+
diff --git a/sdi_account_payment_return/models/__init__.py b/sdi_account_payment_return/models/__init__.py new file mode 100644 index 0000000..87ac2b8 --- /dev/null +++ b/sdi_account_payment_return/models/__init__.py @@ -0,0 +1,4 @@ +############################################################################### +# For copyright and license notices, see __manifest__.py file in root directory +############################################################################### +from . import payment_return diff --git a/sdi_account_payment_return/models/payment_return.py b/sdi_account_payment_return/models/payment_return.py new file mode 100644 index 0000000..22deedf --- /dev/null +++ b/sdi_account_payment_return/models/payment_return.py @@ -0,0 +1,40 @@ +# repo/sdi-addons/sdi_account_payment_return/models/account_payment_return.py + +from odoo import models, api + + +class AccountPaymentReturn(models.Model): + _inherit = 'payment.return' + + @api.multi + def notify_return(self): + template_id = self.env['ir.config_parameter'].sudo().get_param( + 'sdi_account_payment_return.payment_return_mail_template_id' + ) + if template_id: + template = self.env['mail.template'].browse(int(template_id)) + else: + # Busca la plantilla por defecto (ajusta el dominio según tu caso) + template = self.env.ref( + 'sdi_account_payment_return.mail_template_payment_return_line_notify', + raise_if_not_found=False) + all_bodies = [] + for record in self: + for move in record.line_ids: # Ajusta este campo según tu modelo + if template and move.partner_id: + mail = template.with_context( + default_email_to=move.partner_id.email, + object=record + ).generate_email(move.id) + self.env['mail.mail'].create(mail).send() + all_bodies.append(mail.get('body_html', '')) + move.partner_id.message_post( + body=mail.get('body_html', ''), + subject=mail.get('subject', ''), + subtype='mail.mt_note' + ) + if all_bodies: + self.message_post( + body='
'.join(all_bodies), + subtype='mail.mt_note' + ) diff --git a/sdi_account_payment_return/static/description/icon.png b/sdi_account_payment_return/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..32738e6d80c493b8b2224bff5de0bc493583e111 GIT binary patch literal 9250 zcmbt)bx<5#^kqZvAcNcBPLRRf9RdM@1a}GU1Sc@TEw}^^5FogF2oPk@5G=S`fB?bm z*WdoPRl8MNwLR0*HLts8y5GC++;h(DXiW_z94rbf003}Ql;yR-?YsY03}o=L8LjXG zxIwX#QI`RLy2R)A7O3ENS}SF3bpY^Z27pjF0NjF2p?d(}4FiA!a{v&{1OQUEPwiUb z;0`oPH6?lA>AzP&S6K?!g6XDg;0XZF3I1D=el7>!gN^83D(VX8JI@HPk=XtFnlS)? z0bfO4M(5q{qafcvotfq*N#~uHr7d1R+1MH(81yp$vZ?$#_(qp0L=7NTkd{7a2rV-8 zi&-PAC515k8!w3!I+R?mC(Ne?^6MViTxs+u(f7CzZ)7Uk0~Ar|UzlE@UkLXAEtW~7B8`G) z^8e2Ve5Cprli$w}VG(jk_Qbho8X5tyBtug`0lv8#f77{6+x7dWMf=ZXv14z3%IDA5 z*o8g-2&Qx$H1EGY6HnX}PS~`RhhcB}Q3o+Z5I=1DncnL~;w|F!*>?}bH3f|XHDSJ^ zmIg4O0PX$as|IJ}-{Dqaw39~6Ddn{V|1F_=meoDlvb4DXCQ_K|bto3o;pqvSH5Wyj_vJU13~V zWv$dH`#%c}yP0)Xg9(&&Ffv*=bPyA-1MW-;^jO9_0kTCNvdL(fmk{NGCiWD5B9)6j_YB?573$%KogcIb#=nGkM zP4hD|g`KYdx^Mm%7#J+J`F()(3<6+FQ(FrEm=Vyk;cT!y2?s1gQOM9}pCc(ho!>h&X`8o>vEkUCbrq2M^q&KlXRDsMaw$)hYy@@ zTHSt(W_?#Yn8HB5ZPGV;2z>B==tAaHR2SdYC`+**tI`t-?2jtT_hXijFq!ubtb$qK z7UZze2rc?BM(U6w0l?W8@6h!?xn~x?6m|k%sKkYfCt75_3ve1p*bz>kjaph-s>74I zKN4D1F43;ii?tv_)MMC8{?22*A2}CC)T7AkUHDhd+@9UvG&IyZ2~s9(Dwi5+h`^H~ zA()$8_^U6WgLG}o7_#L$2N(W%yS_(DBKviNJJvR7X=(T6>IYw?G0T-3sEi@uB z4syVtOggGKiZ}`sj~s38%fdnSLB`VpW3O+|5taQf8tv2$-=l0n8&w+{rk_>Ht;f#c zvaWP*ad2^0l5-!f8{c|+dk5Ec)4)rieXw{%h73fD(*m#UzddK8mSje@H|m@sy~@b# zOYy5m{VF2n;xgZ0*f5Sl9TD88jr${l2&)1ENDwk-!AnSg^rug4o;wf}x|CtEh&H<@ ziM1WSJd4b=wYB_^N5A7g3-f{uKBW z1eg4KXuTrUs*?Q6q3MOxwfXSIz|gyk`9-8q0O;;TCZEl>3PS?kjT^7tD>_OSIUvAwX$aJn|AX;Ue|Vqs4gghye!;CYpQPaB;|O+)A6di^SYpFGvxe zUuD*_k?Whp?ubcOt!>VTc@K+j_Ni*W!C93q9%jTS+Pl3tT5K+#acHa#Qb&`4=v5LM z1klmZVPaz9`r2oLcMjtBlU*i#iTjx z>+Rn@u>0w!+89`c(SU+>#S|Wk$+2r9haoF?D)l^}0Q=)WY+o35Zdbt7?A+Ypg}<3} z@hQKcpd`$Gk}%{cU{x|GuD4gaJk@3)A|m1^rI1FxWEYdz-R;GpLlebyE%KCYfhKDL zm4u<59tk;lbi|xuDr%^BfqW+&jVet0A*WE*i%yvGZyE`|Zud z%+>28O%%BdBj{=<#F8MUrY0kvj5VMD4-Q%L#jGQpc`sfvU8bQ$v>hn|9jwwje15*; zyjo|q(I3rISBLc>tcW%1B?$$ED6Pc9HtKU+8VS*WacIuij+yUkBHh=oJrA~2_{W@6 z9ea0X_Pu^|sMO3MwmtH8IZ0v{oSOLs=@X%iB=%c=rtE2YdV1X;7Jch`&fo@w`mCqa z%j_GQ2q=fk^a4C4$0TUv7lOb0I!kYK~ zcm|7}zWr*CXQME3r|a5MOKWP*EU3x753OvPEdvp>FE`og+-g!?(|yki0^J^(Y}C5& zmLL5a((XIL!-V45G4v&UH6#T7y5h||T}2ilMlOX1R1v}{@SZdp4S2&r5@CT6_E$=| zWf3QPd#=wodVxUyHiR; zu3=DgH>mV{y-B@|5CD80zlThmd$a}4RhzsT&n6}ziC9u7@?-umR0A0N82ZSY^|D&? z8adm7EWCH^Vopy5!`x4`QJI0kwf0rMvYwU7FD&U%j?aji}lE$ z+e>0E)Z56v^jKtFFxQn%QZpw~H!4|K4$LeX4g^JbICzzJ^KeX`j^(*z1$tSnUv6nV?BRv z!<&`=khCdmpb6Q!$rbZG{@wI~oxQ@WCm0W#BK3ETnXGIWOoiGnTyW#(I=mF}b^x3r zA$Ma!U}%EB+KmHg?~; zglE8)8HY4g@E@C9mfOuA?@trOdHuJB77Pr`LM~=LJSTiA#8e5)XPEi z={9Mq+w*l+M?M{p6IV>+m>)zWL`xSzo=Y=!%CqRkri>Ko%OEof__wE}txcaYd{3DN z0RKWk7NlCD{8LR;6}-n5YdggD85cNn)zzs)z4nsmQxLH}N^e71^ zVt5gfQ*=@7?V^)TV&1UH?-lPM-CdRgaanxo%!Dx?R*dYFxr<+h8CK0YG_|-a`=7@P zDJDX*y8QTl>b&o#@K(}Fopsd#j#fxwOOD*DFOfJSD1pCI6}oEaTupB{h9XIJJ5QY9 z90=7C?cynW-Yk%ZjE#@f8&)BW+X~=x3y2WM{leWt=%a`E4xZm{FsaqIxTx(ar2qR>hKkVt5$3PL&!E7^_$m30uQHy zSI4V87SpApY_A&)o#ldpOiZX^USVlnHeUs?c-q6Zc6PYTny~>l*Y$);f(^nd4XMOa z$jJ5??r>dG5faLprX2@Do9JRv4$sEg`d9W?nMSUt|37-EuS)@tzG(a#b!n-&+5T#ZzRLRM9`qI-Qle3W%B(VmB$oL|8Y z$1nPk`I?%V1Z*2Z3PjRpD6tFLI12hgU1oMk*jqJM?N5r{iV6rcxvq8_G}tXVH6t>( zpKcM{;C0_V+}~tpQ^*g2L1LtN(Q-1Q%2xw{V)mAy zp&=H#vEN;G6YUp=GY$g3{qEzi2Hi6dy4u>v#|=sv$<|g@o9l9s)*$S7{{Uf*>twcy zau0*_KH&g@r6gt46TCQE#om;C)y`%CX3%6t{VLP{bVcSOve0+Q1gI=_AG1bw>d%JV zU!yN|9@p)h#3vXsu7V*>TrOp-4%2v2#vMNDyJFPw7MY0cn1qCc#KaTx0+|M=uAbfw zRLTWLAyR`xiv0{|T|Qpi-o~&`j6be!L{^c-Sa$IR(K|n6{R2}hsbizzsO!?qzMI$3 zH$z!$K$_KzjRTySO|pf5H$ygskG(`ezNGp0XAkkbWWfh6IXO992Z4>gLoraE%+BuY z?p~>>ozqm2tf2w_XkgM@8RwF}i5kmf%TcJxMB%phrL3vffA}VT&CJ{klZWj{4-RP+ zi^6f%bd`LgV`OcCllaN*NQ?R2aP;@A(g!aBx$cP_&hAICWFQprXpOInK1#bm2b*c> z-p7m2OLX|YB9nRqIp3q!57;P3rUnLZs06X2QrBq;J9N+wgy|$#ChBEvJGINjga6Ef z1E82dvF+0_;I4z@zfQyI;=A?NBC_wjUXi|@raWi8TE=Apl0oZ`z(uBQzq5hC!Z0CA zv$fss&dyK%mT*ho`|6@2_FXQ`c> zwER}&1?#!T!PYQ$&o!uYZclIDq=RhF{`_qR0qFzf4pqzX^Ktp0dTToKSbhE`W!Ebm=R0J#v7`u zkA03NG&8L=ANf^ok1fqOwYTcs)I=%da{q3Iy%GP0SHun4vf#A8zh78b=p6S%FECR7 zr&2A$zmxt82Xv4vCRw#aw5yv_3n{g$s3K9XHLccRe<+AUo2dUY z@4hLW(?u*3Jmb(r^9R!UUDbhj8{~X4;pkF1X-oxEbRUhlE5bKhx3;!=;%IvIBWeEm zchy+qB|C=Ef?7r0`(n1rsG*@jq91GUw4i`CS0l1n@2OemrPH5cLgvsNc|*!Nm%ILJ zme1KHTp5N{kGtqJv~_#mYO68|2sR%77xfn1auc4!r;sYQOt)c+mY196%$Ket-lvhu z!Ba`rtGu`nT9LLB5_4#3Cbdbo5lJutAzH%!pETt=blbhIIVDdhDIsBl(~U>v%x?!0 z=)-U8t7UcHk!L}PNy*Biw&!39wv)IZGDJa&ARB8$>{}c79JPBFD<&$YD-O=eykirR zF5VV)0f|gcMRMayeD3bL@Ugmn5h35SqCl5$chRgy2fy&d9r?&2w* zc!R}x(M84QH~8$LYE5h1){PM90{r}~%PuiR(&#r%_T?KWTDrPv+1c&x)66=m6q!2d zkUvZ+p#B19VFERu?aAXqUjz=J(HNE3>IwpX>?csts zRfXNbpkt8J;uIYfC0%h7tiu^?r-8vQi@`~v=Irczb-XO~v=QstbH~NYOF(6gO7-#8 zTa^_)4$H3}XVQMxtXAMjjgF5C=8S=2lV4q^+!jM3A^b*^2%gH_2Ltt?Y-W0Tv-$e> zNM7EghD}`-dd z-OgJDme!+uohrmDp1MB1JCS-A<)ajI5_Vhr7N1O@!%h298UD9NX|?vo2RC7J3G_jZ zegKn{*m4oLxgY@siSl<5Ewg&321Cb+N+jSaaE}`Q{U$-V4p)Yff&vpWb15EF*m`fW zwN?1*ji&x$B|u3@F)AS7k`e1@@tQ!`rOuF&f}(SCp+bX*9!+++YRo~xb7yoog=OMt z;wd#feRg&h6iIozgeo6I*6?X*PU4kgRH>!a+CX2wt z!^;j|vU}Ca-batkiQeIIp;!rpLRWE&0Ia!C5$m4@-&0HiL z4*w8A5vM5Qv?%aBfu4?vJv~#Jcd}b7E!14#T)ZA?xP7sr$SV0|if5CkWJCIn6D!dQ z`%#RbzW6BJUg|IAM|(3C7+fZ-1Cg>Q*(rs4O5^(3gv0Nu=&4J!_VJ17L@zQwo4_ow ziCy@}|C)N`VofCJwuN(RTe_?!iOi{cTv{CMU*=P6bH6`Y)Pd_{&Eo@6%}LC(khB*b z+<#QE_F|dAC z%us+rO>>Vw8;ruk!@~j2Vp6S5*&T(YV$EbW@d)5_24m3uQ4W)nJhbrHsj8_xfBxKVJhRUADcDPBqwW(l!KTCe1UGw3cs*T}ZYO%_ zDXYO2hmuE@Ii)ZRIo;+67hSYDkq~~(tFdk}Z``Ij-KbZrRj!lCnjD&XRuW4J+Fi5T z9^}{&AW@}$w}#ZR*yX&~{F>zzwM5{x)YEC=jN@#Si6#-LoFm3QbiH_z;WwtZh5+p| zgX?#@^bFVxC${sI^=EIrr7@fZjb!JlT{~}>v8KSxbHm-$=sS^T)Z!9!yI+P#=T;(o zk@^aPqGf2<9xzv3Uthnsw+9Ne3?foeVp0}H#(zhP8Jof_2nDqg+lHHinMzh+nC?d5f$pr9H=x6RQbYbM&f>-!?4RX9oui z#Eg!@Yu7`&Q$e$X7T)VwaH)79sDX}AR zgj}gb0-J;_` z-P(-9(ebLQt5@o*B4;e4V-uec*QcPrwo-RlAqpPW&csM|aa(3L76xfI=4yn$c)@;q zc}zt@!0R;x!LR`JzFyT2;QF!Sgcd%SNb~B?iV0K3Gyx{CR*2643L{M5-A;KKE!>sc z3>Vl-OFr8yRR=<&YHM9EF?qDKfKUTIJ6Q}nI~(!~e+5m=H_8}>k6Nw5 z{2-ENq3Oyl85t)FT^&ZUvJmxYA|@u4G+CalUi9;`Gg`P`&qJwhB@<(t)twLgC8%$% zs!fo9ldijJ#5NWV?(7#GKD*H7N z<U-x;b`&c^!Cs!_;di|^mK5?$GaYGQX(i~SVdi3 zAnWDfTs7*-rAp&`Y)lMCd^~jG%8|>AMWw#6@!#1t!Y7hJl8%m@9V>`C1HsVO2S#3x z=U{?L3iDW&*cEsH_jr!JzLD6z)Z^y2Lb(N_mP<9Y4!8C1=bpPBP$h)5I=VJfGBcx_ zF(^uP*t1@u0n+a)x&kgiQ%O86=Wf5WmI1w@NuywsY3Af_#pKCZAbRIl5f8fxWj+}QcZvQ;I0J+Y5tws3swsxfs zA$0&Y03jy6n2MzN@#6<5>X708c}W%)7G!`AjX>fT^~#wT)!C_+4E`QJ;+~Uop`fCw zl>9t6IM{aWdDu|nZX=J_^=nwTU$4-eE`5a#bk@6BsH>~1s*WgC>XBok0imGKjqZ88 z7)g5(;B#`kT!z;NgCekYYHE|=cQ*%zhcwiDJH@({Z_=rf@-ztglLul!<1sZSN6dN% zk|>9KGz>2adzt@+1K?4ozGwq%LMZ7#c5)c&|WVN}GoSfY5 zeHdZ6tv=9Cw&N!3e{q~EVuNLf(62UL_v_X_SwRc$-S#*YUoCr;4|*#wY|qp0AH;Ir zyRu|iWLoq^AOVxscr-k+Wpl;h%$$BM>P0!ec6qxh$zE;7bJeC`F{*4D6&>BI!v}|O znG{u_hSniwv6svBzLJyP~4dUGi9}D7Z$LWk&XtK=QuhFC&VTs zl)i1Ru0CFB0}HR^I))(K47uSwVsJ`~enbXVLQcBC5WuG3-_vn9=C&ITyn48rnwoNH zp74BSG}A_3swf z{5}_S;Qmt%NS1uC`?fqpDl#2-KVg1fce9Rzk`oYUo0xQ+h2ybC%h$~Hv{-()-oa0d zf+5_sqd#|dcNZ0frK^JYX`g+(P^oWeNe>i&t*u|8O7}}I+^;$;@dJWaI>Fi_5|GYe z3VP9zI5fC);tI zQ#LJP{w*~4?OPTP5BM_$&>}zbVF;C#m38t7aCdjFNlk5=kjMZ-J0s(&CLG;cG`H9M z+I_k-EDRai_eo>d_)*-*kFQL$iv0HK?C*3P^}@yU?LSLadLP(ZJ&^yfdLc~bNg_$>U%s7 zrs)yh(ScY}0Sa|@cOHkNT|ZC&X=(BBGFXABaofhG=l(2qz%q;1+d*49dF`SRnO`P( zZyv5G8XhO;^AW@KifBaNURuC0Z&87Bxn4AO*%OGpH%`S_@~yE_>#{Somb;d}$u z?y?O&$l{ZelY{0V$#pDumv!A6tg~~_j07Fk1_J{H1%(W5vtYX$k7%9jtgM@F1u{nU z4O4v-@yzt}^o;yEYt&;B+O2%~fxL8d>nQ?`XXodK2L~|h!{M#egFEEWHi?w zezN$FA3qxAYG{hFryX?QP_CFZ|Jj==UJbdT`b}BCGwSEpi);<+1l`K8n{%)ib3O0h zDJu_E%v4?-EicYb7U)$@vE>;y_^lTyfW~M|&n;*f6;BD<9QOk0Mw`V*v%4s2k>?HYhz+!Mq;p%iwFn^ zCYgGyTF{oa=(unNwnjh=ldw=+1u%*!^Ip6;za| zOGNf}=6kN`F?GV<^hn=G3L-@<1B0wjnP0S7B@G(T{62p_?4Cz66cokCBay4 za-1uDnFl4O=3-J|Qy{;%onlbR8yd#XBoW$}iiMH&J62-9+cpsXvC(Ua2nh&MlWt~G z+en1SrVOX1XH!`6SDUrq%I1ZP+4x3+%&_Y+VBw>!WS02Kud K`D$77u>S#3G + + + payment.return.form.inherit.notify + payment.return + + + +