Repository: OCA/connector-telephony Branch: 18.0 Commit: 8c6a5b6fa020 Files: 156 Total size: 2.0 MB Directory structure: gitextract_g2wxca02/ ├── .copier-answers.yml ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── pre-commit.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .pylintrc-mandatory ├── .ruff.toml ├── LICENSE ├── README.md ├── base_phone/ │ ├── README.rst │ ├── __init__.py │ ├── __manifest__.py │ ├── i18n/ │ │ ├── am_ET.po │ │ ├── ar_001.po │ │ ├── base_phone.pot │ │ ├── ca_ES.po │ │ ├── cs_CZ.po │ │ ├── de.po │ │ ├── el_GR.po │ │ ├── es.po │ │ ├── es_AR.po │ │ ├── es_CR.po │ │ ├── es_EC.po │ │ ├── es_ES.po │ │ ├── es_MX.po │ │ ├── es_VE.po │ │ ├── et_EE.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gl_ES.po │ │ ├── hr.po │ │ ├── it.po │ │ ├── lt.po │ │ ├── nl.po │ │ ├── nl_BE.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── pt_PT.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sl_SI.po │ │ ├── th.po │ │ ├── tr.po │ │ └── vi_VN.po │ ├── models/ │ │ ├── __init__.py │ │ ├── ir_fields_converter.py │ │ ├── phone_common.py │ │ ├── phone_validation_mixin.py │ │ ├── res_company.py │ │ └── res_partner.py │ ├── pyproject.toml │ ├── readme/ │ │ ├── CONTRIBUTORS.md │ │ └── DESCRIPTION.md │ ├── requirements.txt │ ├── security/ │ │ ├── ir.model.access.csv │ │ └── phone_security.xml │ ├── static/ │ │ ├── description/ │ │ │ └── index.html │ │ └── src/ │ │ └── components/ │ │ ├── on_dial_button/ │ │ │ ├── on_dial_button.esm.js │ │ │ └── on_dial_button.xml │ │ └── phone_field/ │ │ ├── phone_field.esm.js │ │ └── phone_field.xml │ ├── tests/ │ │ ├── __init__.py │ │ └── test_base_phone.py │ ├── views/ │ │ └── res_users_view.xml │ └── wizard/ │ ├── __init__.py │ ├── number_not_found.py │ ├── number_not_found_view.xml │ ├── reformat_all_phonenumbers.py │ ├── reformat_all_phonenumbers_view.xml │ ├── res_config_settings.py │ └── res_config_settings.xml ├── checklog-odoo.cfg ├── eslint.config.cjs ├── prettier.config.cjs ├── requirements.txt ├── setup/ │ └── _metapackage/ │ └── pyproject.toml └── voip_oca/ ├── README.rst ├── __init__.py ├── __manifest__.py ├── data/ │ └── neutralize.sql ├── demo/ │ └── demo_data.xml ├── i18n/ │ ├── it.po │ └── voip_oca.pot ├── models/ │ ├── __init__.py │ ├── ir_http.py │ ├── mail_activity.py │ ├── mail_activity_mixin.py │ ├── res_partner.py │ ├── res_users.py │ ├── voip_call.py │ └── voip_pbx.py ├── pyproject.toml ├── readme/ │ ├── CONFIGURE.md │ ├── CONTEXT.md │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security/ │ └── ir.model.access.csv ├── static/ │ ├── description/ │ │ └── index.html │ ├── lib/ │ │ └── sip.js │ ├── src/ │ │ ├── components/ │ │ │ ├── activity_list/ │ │ │ │ ├── activity_list.esm.js │ │ │ │ ├── activity_list.scss │ │ │ │ └── activity_list.xml │ │ │ ├── call/ │ │ │ │ ├── call.esm.js │ │ │ │ └── call.xml │ │ │ ├── call_list/ │ │ │ │ ├── call_list.esm.js │ │ │ │ ├── call_list.scss │ │ │ │ └── call_list.xml │ │ │ ├── numpad/ │ │ │ │ ├── numpad.esm.js │ │ │ │ ├── numpad.scss │ │ │ │ └── numpad.xml │ │ │ ├── partner/ │ │ │ │ ├── partner.esm.js │ │ │ │ └── partner.xml │ │ │ ├── partner_list/ │ │ │ │ ├── partner_list.esm.js │ │ │ │ ├── partner_list.scss │ │ │ │ └── partner_list.xml │ │ │ ├── phone_field/ │ │ │ │ ├── phone_field.esm.js │ │ │ │ └── phone_field.xml │ │ │ ├── softphone/ │ │ │ │ ├── softphone.esm.js │ │ │ │ ├── softphone.scss │ │ │ │ └── softphone.xml │ │ │ ├── transfer/ │ │ │ │ ├── transfer.esm.js │ │ │ │ └── transfer.xml │ │ │ └── voip_oca_systray/ │ │ │ ├── voip_oca_systray.esm.js │ │ │ ├── voip_oca_systray.scss │ │ │ └── voip_oca_systray.xml │ │ ├── core/ │ │ │ └── phone/ │ │ │ ├── @types/ │ │ │ │ └── model.d.ts │ │ │ └── call_model.esm.js │ │ ├── services/ │ │ │ ├── voip_agent_service.esm.js │ │ │ └── voip_oca_service.esm.js │ │ └── utils/ │ │ └── utils.esm.js │ └── tests/ │ ├── components/ │ │ ├── ActivityTab.esm.test.js │ │ ├── CallTab.esm.test.js │ │ ├── NumpadTab.esm.test.js │ │ ├── PartnerTab.esm.test.js │ │ └── Softphone.esm.test.js │ ├── mock_server/ │ │ └── mock_models/ │ │ ├── mail_activity.esm.js │ │ ├── res_partner.esm.js │ │ ├── voip_call.esm.js │ │ └── voip_pbx.esm.js │ └── voip_test_helpers.esm.js ├── tests/ │ ├── __init__.py │ ├── test_backend.py │ ├── test_frontend.py │ └── test_js.py └── views/ ├── menus.xml ├── res_users.xml ├── voip_call.xml └── voip_pbx.xml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .copier-answers.yml ================================================ # Do NOT update manually; changes here will be overwritten by Copier _commit: v1.40 _src_path: git+https://github.com/OCA/oca-addons-repo-template additional_ruff_rules: [] convert_readme_fragments_to_markdown: true enable_checklog_odoo: true generate_requirements_txt: true github_check_license: true github_ci_extra_env: {} github_enable_codecov: true github_enable_makepot: true github_enable_stale_action: true github_enforce_dev_status_compatibility: true include_wkhtmltopdf: false odoo_test_flavor: Both odoo_version: 18.0 org_name: Odoo Community Association (OCA) org_slug: OCA rebel_module_groups: [] repo_description: connector-telephony repo_name: connector-telephony repo_slug: connector-telephony repo_website: https://github.com/OCA/connector-telephony use_pyproject_toml: true use_ruff: true ================================================ FILE: .editorconfig ================================================ # Configuration for known file extensions [*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}] charset = utf-8 end_of_line = lf indent_size = 4 indent_style = space insert_final_newline = true trim_trailing_whitespace = true [*.{json,yml,yaml,rst,md}] indent_size = 2 # Do not configure editor for libs and autogenerated content [{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}] charset = unset end_of_line = unset indent_size = unset indent_style = unset insert_final_newline = false trim_trailing_whitespace = false ================================================ FILE: .gitattributes ================================================ test-requirements.txt merge=union ================================================ FILE: .github/workflows/pre-commit.yml ================================================ name: pre-commit on: pull_request: branches: - "18.0*" push: branches: - "18.0" - "18.0-ocabot-*" jobs: pre-commit: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" cache: 'pip' cache-dependency-path: '.pre-commit-config.yaml' - name: Get python version run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} - name: Install pre-commit run: pip install pre-commit - name: Run pre-commit run: pre-commit run --all-files --show-diff-on-failure --color=always env: # Consider valid a PR that changes README fragments but doesn't # change the README.rst file itself. It's not really a problem # because the bot will update it anyway after merge. This way, we # lower the barrier for functional contributors that want to fix the # readme fragments, while still letting developers get README # auto-generated (which also helps functionals when using runboat). # DOCS https://pre-commit.com/#temporarily-disabling-hooks SKIP: oca-gen-addon-readme - name: Check that all files generated by pre-commit are in git run: | newfiles="$(git ls-files --others --exclude-from=.gitignore)" if [ "$newfiles" != "" ] ; then echo "Please check-in the following files:" echo "$newfiles" exit 1 fi ================================================ FILE: .github/workflows/stale.yml ================================================ name: Mark stale issues and pull requests on: schedule: - cron: "0 12 * * 0" jobs: stale: runs-on: ubuntu-latest steps: - name: Stale PRs and issues policy uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} # General settings. ascending: true remove-stale-when-updated: true # Pull Requests settings. # 120+30 day stale policy for PRs # * Except PRs marked as "no stale" days-before-pr-stale: 120 days-before-pr-close: 30 exempt-pr-labels: "no stale" stale-pr-label: "stale" stale-pr-message: > There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. If you want this PR to never become stale, please ask a PSC member to apply the "no stale" label. # Issues settings. # 180+30 day stale policy for open issues # * Except Issues marked as "no stale" days-before-issue-stale: 180 days-before-issue-close: 30 exempt-issue-labels: "no stale,needs more information" stale-issue-label: "stale" stale-issue-message: > There hasn't been any activity on this issue in the past 6 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. If you want this issue to never become stale, please ask a PSC member to apply the "no stale" label. # 15+30 day stale policy for issues pending more information # * Issues that are pending more information # * Except Issues marked as "no stale" - name: Needs more information stale issues policy uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} ascending: true only-labels: "needs more information" exempt-issue-labels: "no stale" days-before-stale: 15 days-before-close: 30 days-before-pr-stale: -1 days-before-pr-close: -1 remove-stale-when-updated: true stale-issue-label: "stale" stale-issue-message: > This issue needs more information and there hasn't been any activity recently, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. If you think this is a mistake, please ask a PSC member to remove the "needs more information" label. ================================================ FILE: .github/workflows/test.yml ================================================ name: tests on: pull_request: branches: - "18.0*" push: branches: - "18.0" - "18.0-ocabot-*" jobs: unreleased-deps: runs-on: ubuntu-latest name: Detect unreleased dependencies steps: - uses: actions/checkout@v4 - run: | for reqfile in requirements.txt test-requirements.txt ; do if [ -f ${reqfile} ] ; then result=0 # reject non-comment lines that contain a / (i.e. URLs, relative paths) grep "^[^#].*/" ${reqfile} || result=$? if [ $result -eq 0 ] ; then echo "Unreleased dependencies found in ${reqfile}." exit 1 fi fi done test: runs-on: ubuntu-22.04 container: ${{ matrix.container }} name: ${{ matrix.name }} strategy: fail-fast: false matrix: include: - container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest name: test with OCB makepot: "true" services: postgres: image: postgres:12 env: POSTGRES_USER: odoo POSTGRES_PASSWORD: odoo POSTGRES_DB: odoo ports: - 5432:5432 env: OCA_ENABLE_CHECKLOG_ODOO: "1" steps: - uses: actions/checkout@v4 with: persist-credentials: false - name: Install addons and dependencies run: oca_install_addons - name: Check licenses run: manifestoo -d . check-licenses - name: Check development status run: manifestoo -d . check-dev-status --default-dev-status=Beta - name: Initialize test db run: oca_init_test_database - name: Run tests run: oca_run_tests - name: Upload screenshots from JS tests uses: actions/upload-artifact@v4 if: ${{ failure() }} with: name: Screenshots of failed JS tests - ${{ matrix.name }}${{ join(matrix.include) }} path: /tmp/odoo_tests/${{ env.PGDATABASE }} if-no-files-found: ignore - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - name: Update .pot files run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }} if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'OCA' }} ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] /.venv /.pytest_cache /.ruff_cache # C extensions *.so # Distribution / packaging .Python env/ bin/ build/ develop-eggs/ dist/ eggs/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg *.eggs # Windows installers *.msi # Debian packages *.deb # Redhat packages *.rpm # MacOS packages *.dmg *.pkg # 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/ ================================================ FILE: .pre-commit-config.yaml ================================================ exclude: | (?x) # NOT INSTALLABLE ADDONS # 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/|^eslint.config.cjs|^prettier.config.cjs| # 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/| # Ignore test files in addons /tests/samples/.*| # You don't usually want a bot to modify your legal texts (LICENSE.*|COPYING.*) default_language_version: python: python3 node: "22.9.0" repos: - repo: local hooks: # These files are most likely copier diff rejection junks; if found, # review them manually, fix the problem (if needed) and remove them - id: forbidden-files name: forbidden files entry: found forbidden files; remove them language: fail files: "\\.rej$" - id: en-po-files name: en.po files cannot exist entry: found a en.po file language: fail files: '[a-zA-Z0-9_]*/i18n/en\.po$' - id: obsolete dotfiles name: obsolete dotfiles entry: found obsolete files; remove them files: '^(\.travis\.yml|\.t2d\.yml|CONTRIBUTING\.md|\.prettierrc\.yml|\.eslintrc\.yml)$' language: fail - repo: https://github.com/sbidoul/whool rev: v1.3 hooks: - id: whool-init - repo: https://github.com/oca/maintainer-tools rev: b89f767503be6ab2b11e4f50a7557cb20066e667 hooks: # update the NOT INSTALLABLE ADDONS section above - id: oca-update-pre-commit-excluded-addons - id: oca-fix-manifest-website args: ["https://github.com/OCA/connector-telephony"] - id: oca-gen-addon-readme args: - --addons-dir=. - --branch=18.0 - --org-name=OCA - --repo-name=connector-telephony - --if-source-changed - --keep-source-digest - --convert-fragments-to-markdown - id: oca-gen-external-dependencies - repo: https://github.com/OCA/odoo-pre-commit-hooks rev: v0.0.33 hooks: - id: oca-checks-odoo-module - id: oca-checks-po args: - --disable=po-pretty-format - repo: local hooks: - id: prettier name: prettier (with plugin-xml) entry: prettier args: - --write - --list-different - --ignore-unknown types: [text] files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$ language: node additional_dependencies: - "prettier@3.3.3" - "@prettier/plugin-xml@3.4.1" - repo: local hooks: - id: eslint name: eslint entry: eslint args: - --color - --fix verbose: true types: [javascript] language: node additional_dependencies: - "eslint@9.12.0" - "eslint-plugin-jsdoc@50.3.1" - "globals@16.0.0" - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 hooks: - id: trailing-whitespace # exclude autogenerated files exclude: /README\.rst$|\.pot?$ - id: end-of-file-fixer # exclude autogenerated files exclude: /README\.rst$|\.pot?$ - 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 # exclude files where underlines are not distinguishable from merge conflicts exclude: /README\.rst$|^docs/.*\.rst$ - id: check-symlinks - id: check-xml - id: mixed-line-ending args: ["--fix=lf"] - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.6.8 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/OCA/pylint-odoo rev: v9.1.3 hooks: - id: pylint_odoo name: pylint with optional checks args: - --rcfile=.pylintrc - --exit-zero verbose: true - id: pylint_odoo args: - --rcfile=.pylintrc-mandatory ================================================ FILE: .pylintrc ================================================ [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=18.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, class-camelcase, dangerous-view-replace-wo-priority, duplicate-id-csv, duplicate-xml-fields, duplicate-xml-record-id, eval-referenced, incoherent-interpreter-exec-perm, openerp-exception-warning, redundant-modulename-xml, relative-import, rst-syntax-error, wrong-tabs-instead-of-spaces, xml-syntax-error, assignment-from-none, attribute-deprecated, dangerous-default-value, development-status-allowed, duplicate-key, eval-used, 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, pointless-statement, pointless-string-statement, print-used, redundant-keyword-arg, reimported, return-in-init, sql-injection, too-few-format-args, translation-field, translation-required, unreachable, use-vim-comment, character-not-valid-in-resource-link, 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, file-not-used, missing-newline-extrafiles, old-api7-method-defined, po-msgstr-variables, po-syntax-error, str-format-used, unnecessary-utf8-coding-comment, xml-attribute-translatable, xml-deprecated-qweb-directive, xml-deprecated-tree-attribute, attribute-string-redundant, consider-merging-classes-inherited, context-overridden, except-pass, invalid-commit, manifest-maintainers-list, missing-readme, missing-return, odoo-addons-relative-import, renamed-field-parameter, resource-not-exist, test-folder-imported, translation-contains-variable, translation-positional-used, website-manifest-key-not-valid-uri, external-request-timeout, missing-manifest-dependency, too-complex,, create-user-wo-reset-password, dangerous-filter-wo-user, file-not-used, missing-newline-extrafiles, no-utf8-coding-comment, old-api7-method-defined, unnecessary-utf8-coding-comment, # messages that do not cause the lint step to fail consider-merging-classes-inherited, deprecated-module, invalid-commit, missing-readme, odoo-addons-relative-import, redefined-builtin, manifest-external-assets [REPORTS] msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} output-format=colorized reports=no ================================================ FILE: .pylintrc-mandatory ================================================ [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=18.0 [MESSAGES CONTROL] disable=all enable=anomalous-backslash-in-string, api-one-deprecated, api-one-multi-together, class-camelcase, dangerous-view-replace-wo-priority, duplicate-id-csv, duplicate-xml-fields, duplicate-xml-record-id, eval-referenced, incoherent-interpreter-exec-perm, openerp-exception-warning, redundant-modulename-xml, relative-import, rst-syntax-error, wrong-tabs-instead-of-spaces, xml-syntax-error, assignment-from-none, attribute-deprecated, dangerous-default-value, development-status-allowed, duplicate-key, eval-used, 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, pointless-statement, pointless-string-statement, print-used, redundant-keyword-arg, reimported, return-in-init, sql-injection, too-few-format-args, translation-field, translation-required, unreachable, use-vim-comment, character-not-valid-in-resource-link, 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, file-not-used, missing-newline-extrafiles, old-api7-method-defined, po-msgstr-variables, po-syntax-error, str-format-used, unnecessary-utf8-coding-comment, xml-attribute-translatable, xml-deprecated-qweb-directive, xml-deprecated-tree-attribute, attribute-string-redundant, consider-merging-classes-inherited, context-overridden, except-pass, invalid-commit, manifest-maintainers-list, missing-readme, missing-return, odoo-addons-relative-import, renamed-field-parameter, resource-not-exist, test-folder-imported, translation-contains-variable, translation-positional-used, website-manifest-key-not-valid-uri, external-request-timeout [REPORTS] msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} output-format=colorized reports=no ================================================ FILE: .ruff.toml ================================================ target-version = "py310" fix = true [lint] extend-select = [ "B", "C90", "E501", # line too long (default 88) "I", # isort "UP", # pyupgrade ] extend-safe-fixes = ["UP008"] exclude = ["setup/*"] [format] exclude = ["setup/*"] [lint.per-file-ignores] "__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py "__manifest__.py" = ["B018"] # useless expression [lint.isort] section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"] [lint.isort.sections] "odoo" = ["odoo"] "odoo-addons" = ["odoo.addons"] [lint.mccabe] max-complexity = 16 ================================================ FILE: LICENSE ================================================ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU Affero General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . ================================================ FILE: README.md ================================================ [![Support the OCA](https://odoo-community.org/readme-banner-image)](https://odoo-community.org/get-involved?utm_source=repo-readme) # connector-telephony [![Runboat](https://img.shields.io/badge/runboat-Try%20me-875A7B.png)](https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&target_branch=18.0) [![Pre-commit Status](https://github.com/OCA/connector-telephony/actions/workflows/pre-commit.yml/badge.svg?branch=18.0)](https://github.com/OCA/connector-telephony/actions/workflows/pre-commit.yml?query=branch%3A18.0) [![Build Status](https://github.com/OCA/connector-telephony/actions/workflows/test.yml/badge.svg?branch=18.0)](https://github.com/OCA/connector-telephony/actions/workflows/test.yml?query=branch%3A18.0) [![codecov](https://codecov.io/gh/OCA/connector-telephony/branch/18.0/graph/badge.svg)](https://codecov.io/gh/OCA/connector-telephony) [![Translation Status](https://translation.odoo-community.org/widgets/connector-telephony-18-0/-/svg-badge.svg)](https://translation.odoo-community.org/engage/connector-telephony-18-0/?utm_source=widget) connector-telephony [//]: # (addons) Available addons ---------------- addon | version | maintainers | summary --- | --- | --- | --- [base_phone](base_phone/) | 18.0.1.0.0 | alexis-via | Validate phone numbers [voip_oca](voip_oca/) | 18.0.1.0.2 | etobella | Provides the use of Voip [//]: # (end addons) ## Licenses This repository is licensed under [AGPL-3.0](LICENSE). However, each module can have a totally different license, as long as they adhere to Odoo Community Association (OCA) policy. Consult each module's `__manifest__.py` file, which contains a `license` key that explains its license. ---- OCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. ================================================ FILE: base_phone/README.rst ================================================ ========== Base Phone ========== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:1685f77c2ab6988da842ee87e52d46d4e55bcd2c6bdbe568a730f0f352e2f133 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fconnector--telephony-lightgray.png?logo=github :target: https://github.com/OCA/connector-telephony/tree/18.0/base_phone :alt: OCA/connector-telephony .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/connector-telephony-18-0/connector-telephony-18-0-base_phone :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png :target: https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&target_branch=18.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| This module provides common methods and wizards which can be useful to develop a connector between Odoo and a telephony system. It depends on the official module *phone_validation* which handle the reformatting of phone numbers using the `phonenumbers `__ Python library, which is a port of the library used in Android smartphones. For example, if your user is linked to a French company and you update the form view of a partner with a badly written French phone number such as '01-55-42-12-42', Odoo will automatically update the phone number to `E.164 `__ format '+33155421242'. This module extends this reformatting to create() and write() methods. This module is used by the Odoo-Asterisk connector of the OCA. **Table of contents** .. contents:: :local: Bug Tracker =========== Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback `_. Do not contact contributors directly about support or help with technical issues. Credits ======= Authors ------- * Akretion Contributors ------------ - Alexis de Lattre - Sébastien Beau - `Dixmit `__: - Luis David Rodríguez - Enric Tobella - `Heliconia Solutions Pvt. Ltd. `__ - Bhavesh Heliconia Maintainers ----------- This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. .. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px :target: https://github.com/alexis-via :alt: alexis-via Current `maintainer `__: |maintainer-alexis-via| This module is part of the `OCA/connector-telephony `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. ================================================ FILE: base_phone/__init__.py ================================================ from . import models from . import wizard ================================================ FILE: base_phone/__manifest__.py ================================================ # Copyright 2014-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # @migration from 12.0 to 13.0: Christophe Langenberg # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Base Phone", "version": "18.0.1.0.0", "category": "Phone", "license": "AGPL-3", "summary": "Validate phone numbers", "author": "Akretion,Odoo Community Association (OCA)", "maintainers": ["alexis-via"], "website": "https://github.com/OCA/connector-telephony", "depends": ["phone_validation", "base_setup"], "external_dependencies": {"python": ["phonenumbers"]}, "data": [ "security/phone_security.xml", "security/ir.model.access.csv", "wizard/res_config_settings.xml", "views/res_users_view.xml", "wizard/reformat_all_phonenumbers_view.xml", "wizard/number_not_found_view.xml", ], "assets": { "web.assets_backend": [ "base_phone/static/src/components/**/*", ], }, "installable": True, } ================================================ FILE: base_phone/i18n/am_ET.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:12+0000\n" "PO-Revision-Date: 2023-05-01 07:12+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "ድርጅት" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/ar_001.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:13+0000\n" "PO-Revision-Date: 2023-05-01 07:13+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "إلغاء" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "الشركات " #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "تهيئة الإعدادات " #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "جهة الاتصال" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/base_phone.pot ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \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: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. " "https://cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. " "https://developers.google.com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be " "positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/ca_ES.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:14+0000\n" "PO-Revision-Date: 2023-05-01 07:14+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancel·la" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Empreses" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Ajustos de configuració" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacte" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creat per" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creat el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Darrera Actualització per" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Darrera Actualització el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/cs_CZ.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:15+0000\n" "PO-Revision-Date: 2023-05-01 07:15+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Zrušit" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Společnosti" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Nastavení konfigurace" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakt" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/de.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:17+0000\n" "PO-Revision-Date: 2023-05-01 07:17+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Anrufernummer" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Abbruch" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial erfolgreich" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Schließen" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Unternehmen" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Konfigurationseinstellungen" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakt" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Erstelle neuen Partner" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Einen Partner anlegen oder aktualisieren" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Erstellt von" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Erstellt am" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Aktuelle Mobilnummer" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Aktuelle Telefonnummer" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Wählen" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Anzeigename" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Ferig" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Entwurf" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "E.164 Nummer" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "E.164 Entsprechung der Rufnummer." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Festnetz" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Festnetz/Mobil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "In einigen Situationen muss Odoo einen Partner/Mitarbeiter/… aus der vom " "Anrufer übermittelten Telefonnummer finden. Da der Telefonanbieter nicht " "immer in einem Standardformat sendet ist die beste Methode um die " "entsprechenden Telefonnummer zu finden, das Ende der Telefonnummer mit den " "letzten N Ziffern zu vergleichen. N ist der Wert, den Sie in dieses Feld " "eingeben sollten." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Zuletzt aktualisiert von" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "Bei Unternehmen %s fehlt das Land" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Mobil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Nummer nicht gefunden" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Nummer in internationales Format umgewandelt:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Nummer nicht gefunden" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Anzahl der übereinstimmenden Stellen vom Ende her" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Anzahl der übereinstimmenden Stellen vom Ende her" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Partner dem die Telefonnummer zugewiesen wird" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Zu aktualisierender Partner" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Telefon Anrufer-ID" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Telefonnummer des Anrufers der vom Telefonieserver erhalten wurde, im Format " "des Telefonieservers (nicht E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Telefonnummern, die nicht umformatiert werden konnten" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Telefonnummern, die nicht umformatiert werden konnten:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Formatiere die Telefonnummern um" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Formatiere alle Telefonnummern um" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Wählen Sie den Partner der aktualisiert werden soll." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Bundesland" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonie" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Telefonie Einstellungen" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "Der Wert des Feldes 'Anzahl der übereinstimmenden Stellen vom Ende her' muss " "positiv sein" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Dieser Assistent formatiert die Telefon-, Mobil- und Faxnummern aller " "Partner im standard internationen Format - zB +33141981242 - neu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Nimm das klingelde Telefon ab" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Einen Partner anlegen oder aktualisieren" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Zuletzt geändert am" ================================================ FILE: base_phone/i18n/el_GR.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:17+0000\n" "PO-Revision-Date: 2023-05-01 07:17+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Εταιρίες" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Ρυθμίσεις διαμόρφωσης" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Επαφή" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "Κωδικός" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/es.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2024-04-24 10:41+0000\n" "Last-Translator: Ivorra78 \n" "Language-Team: \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17\n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número llamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "Click2dial a %s" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nueva empresa" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar empresa" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "Marcar teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Hecho" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del número que llama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Teléfono fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/móvil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "ID (identificación)" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/" "empleado... desde un número de teléfono presentado por la entidad llamante. " "Como los números de teléfono presentados por el operador telefónico pueden " "no siempre ser mostrados en un formato estándar, el mejor método para " "encontrar el elemento relacionado en Odoo es intentar casar el final del " "número de teléfono con los últimos N dígitos del número presentado. N es el " "valor que debe entrar en este campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No existe país en la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Teléfono móvil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número no encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Número marcado: %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número no encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Número de Dígitos" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Empresa en la que se escribirá el número de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Empresa a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Empresa: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformatear números de teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformatear todos los números de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escoja la empresa a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" "Establezca cuántos dígitos deben ser idénticos desde el final del número de " "teléfono para declararlo como coincidente con un socio, un cliente " "potencial, un empleado, un candidato, etc." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonía" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de telefonía" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos que coinciden al final' debe ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas " "las empresas en formato estándar internacional, p.ej. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Descuelgue su teléfono que está sonando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Incoming calls" #~ msgstr "Llamadas entrantes" #~ msgid "Last Modified on" #~ msgstr "Última modificación el" ================================================ FILE: base_phone/i18n/es_AR.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:19+0000\n" "PO-Revision-Date: 2023-05-01 07:19+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Numero entrante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nuevo contacto" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar un contacto" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Teléfono móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre para mostrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Listo" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Numero E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del numero entrante." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/Movil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, el sistema va a necesitar encontrar un Contacto/Lead/" "Empleado... desde un número telefónico representado por el número entrante. " "Como los números representados por el operador no siempre son mostrados en " "el formato estándar, el mejor metodo para encontrar el objeto relacionado en " "el sistema es tratar de coincidir (match) la parte final del número " "telefónico en el sistema con los últimos N dígitos del número telefónico " "presentado como número entrante. N es el valor que debes ingresar en este " "campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No se encuentra definido el país para la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Movil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "No se encuentra el número telefónico" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Numero discado: %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "No se encuentra el número" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Numero de digitos" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos para coincidir desde el final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Contacto/Cliente en el que el numero de telefono va a ser escrito" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Contacto/Cliente a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Contacto/Cliente: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Re-formatear números telefónicos" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Re-formatear todos los números telefónicos" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Selecciona el contacto a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" "Seleccionar cuantos digitos deben ser idénticos desde el final del número " "telefónico para declarar que coincide con un contacto, un lead, un empleado " "o un candidato, etc." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonia" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de Telefonia" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos desde el final' debe ser positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Esta herramienta le ayudara a reformatear todos los números de teléfono y " "móviles de todos los contactos en el formato estándar internacional. E.j. " "+33 1 41 98 12 42" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Tu teléfono está sonando, atiende para continuar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar un contacto existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Incoming calls" #~ msgstr "Llamadas Entrantes" #~ msgid "Last Modified on" #~ msgstr "Última modificación en" ================================================ FILE: base_phone/i18n/es_CR.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2023-05-01 07:20+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número llamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nueva empresa" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar empresa" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Hecho" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del número que llama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Teléfono fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/móvil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/" "empleado... desde un número de teléfono presentado por la entidad llamante. " "Como los números de teléfono presentados por el operador telefónico pueden " "no siempre ser mostrados en un formato estándar, el mejor método para " "encontrar el elemento relacionado en Odoo es intentar casar el final del " "número de teléfono con los últimos N dígitos del número presentado. N es el " "valor que debe entrar en este campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No existe país en la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Teléfono móvil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número no encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número no encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Empresa en la que se escribirá el número de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Empresa a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Empresa: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformatear números de teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformatear todos los números de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escoja la empresa a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonía" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de telefonía" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos que coinciden al final' debe ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas " "las empresas en formato estándar internacional, p.ej. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Descuelgue su teléfono que está sonando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Última modificación el" ================================================ FILE: base_phone/i18n/es_EC.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2023-05-01 07:20+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número llamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nueva empresa" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar empresa" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Hecho" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del número que llama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Teléfono fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/móvil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/" "empleado... desde un número de teléfono presentado por la entidad llamante. " "Como los números de teléfono presentados por el operador telefónico pueden " "no siempre ser mostrados en un formato estándar, el mejor método para " "encontrar el elemento relacionado en Odoo es intentar casar el final del " "número de teléfono con los últimos N dígitos del número presentado. N es el " "valor que debe entrar en este campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No existe país en la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Teléfono móvil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número no encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número no encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Empresa en la que se escribirá el número de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Empresa a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Empresa: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformatear números de teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformatear todos los números de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escoja la empresa a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonía" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de telefonía" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos que coinciden al final' debe ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas " "las empresas en formato estándar internacional, p.ej. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Descuelgue su teléfono que está sonando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Última modificación el" ================================================ FILE: base_phone/i18n/es_ES.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # # Translators: # OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-09 09:55+0000\n" "PO-Revision-Date: 2016-11-09 09:55+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" "es_ES/)\n" "Language: es_ES\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: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "ID" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/es_MX.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2023-05-01 07:20+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número llamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Empresas" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nueva empresa" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar empresa" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Hecho" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del número que llama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Teléfono fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/móvil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/" "empleado... desde un número de teléfono presentado por la entidad llamante. " "Como los números de teléfono presentados por el operador telefónico pueden " "no siempre ser mostrados en un formato estándar, el mejor método para " "encontrar el elemento relacionado en Odoo es intentar casar el final del " "número de teléfono con los últimos N dígitos del número presentado. N es el " "valor que debe entrar en este campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No existe país en la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Teléfono móvil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número no encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número no encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Empresa en la que se escribirá el número de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Empresa a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Empresa: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformatear números de teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformatear todos los números de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escoja la empresa a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonía" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de telefonía" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos que coinciden al final' debe ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas " "las empresas en formato estándar internacional, p.ej. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Descuelgue su teléfono que está sonando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Última modificación el" ================================================ FILE: base_phone/i18n/es_VE.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2023-05-01 07:20+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número llamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial satisfactorio" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Cerrar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comunes para funciones del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Opciones de configuración" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crear nueva empresa" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Crear o actualizar empresa" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvil actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Teléfono actual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Llamar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Hecho" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Borrador" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalente E.164 del número que llama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Teléfono fijo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fijo/móvil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/" "empleado... desde un número de teléfono presentado por la entidad llamante. " "Como los números de teléfono presentados por el operador telefónico pueden " "no siempre ser mostrados en un formato estándar, el mejor método para " "encontrar el elemento relacionado en Odoo es intentar casar el final del " "número de teléfono con los últimos N dígitos del número presentado. N es el " "valor que debe entrar en este campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "No existe país en la compañía %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Teléfono móvil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número no encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido a formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número no encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos que coinciden al final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Empresa en la que se escribirá el número de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Empresa a actualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Empresa: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificación de llamada del teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Teléfono validación" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de teléfono del interlocutor que ha sido obtenido desde el servidor " "de telefonía, en el formato usado por el servidor de telefonía (no E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de teléfono que no pudieron reformatearse" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de teléfono que no pudieron reformatearse:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformatear números de teléfono" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformatear todos los números de teléfono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escoja la empresa a actualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonía" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferencias de telefonía" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "El valor del campo 'Número de dígitos que coinciden al final' debe ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas " "las empresas en formato estándar internacional, p.ej. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Descuelgue su teléfono que está sonando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Actualizar empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Última modificación el" ================================================ FILE: base_phone/i18n/et_EE.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:16+0000\n" "PO-Revision-Date: 2023-05-01 07:16+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Loobu" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Ettevõtted" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Seadistused" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakt" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/fi.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:16+0000\n" "PO-Revision-Date: 2023-05-01 07:16+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Yritykset" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Konfiguraatioasetukset" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakti" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Luonut" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Luotu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nimi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Valmis" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Tila" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Viimeksi muokattu" ================================================ FILE: base_phone/i18n/fr.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:16+0000\n" "PO-Revision-Date: 2023-05-01 07:16+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Numéro appellant" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Annuler" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial réussi" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "Click2dial de %s" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Fermer" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Méthodes courantes pour les fonctionnalités du téléphone" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Sociétés" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Paramètres de config" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Créer un nouveau partenaire" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Créer ou mettre à jour un partenaire" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Créé par" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Date" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Portable actuel" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Téléphone actuel" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Composer" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nom à afficher" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Fait" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Brouillon" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Numéro E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Equivalent au format E.164 du numéro appelant." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Fixe" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fixe/Portable" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "Identifiant" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "Dans différentes situations, Odoo devra trouver un Partenaire/Prospect/" "Employé/… à partir d’un numéro de téléphone présenté par l’appelant. Comme " "les numéros de téléphone présentés par votre opérateur téléphonique ne sont " "pas toujours affichés dans un format standard, la meilleure méthode pour " "trouver le partenaire/prospect/employé/… associé dans Odoo est d’essayer de " "faire correspondre la fin du numéro de téléphone dans Odoo. avec les N " "derniers chiffres du numéro de téléphone présenté par l’appelant. N est la " "valeur que vous devez saisir dans ce champ." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Dernière mise à jour par" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "Pays non défini pour la société %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Portable" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Numéro introuvable" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Numéro converti au format international :" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Numéro composé : %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Numéro introuvable" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Nombre de chiffres à faire correspondre en partant de la fin" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Nombre de chiffres à faire correspondre en partant de la fin" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Partenaire dans lequel le numéro de téléphone sera enregistré" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Partenaire à mettre à jour" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Partenaire : %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "CallerID du téléphone" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Mixin de la Validation de Téléphones" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Numéro de téléphone de la partie appelante qui a été obtenu auprès du " "serveur de téléphonie, dans le format utilisé par le serveur de téléphonie " "(et non E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Numéros de téléphone qui n'ont pas pu être reformatés" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Numéros de téléphone qui n'ont pas pu être reformatés :" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Reformate les numéros de téléphone" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Reformate tous les numéros de téléphone" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Selectionnez le partenaire à mettre à jour." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" "Définissez le nombre de chiffres qui doivent être identiques à partir de la " "fin du numéro de téléphone pour le déclarer comme une correspondance avec un " "partenaire, un prospect, un employé, un candidat, etc." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "État" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Téléphonie" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Préférences téléphoniques" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "La valeur du champ 'Nombre de chiffres à faire correspondre à partir de la " "fin' doit être positive." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Cet assistant reformate le numéro de téléphone fixe, portable et le fax de " "tous les partenaires au format standard international i.e. +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Décrochez votre téléphone" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Mettre à jour un partenaire existant" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Incoming calls" #~ msgstr "Appels entrants" #~ msgid "Last Modified on" #~ msgstr "Dernière modification le" ================================================ FILE: base_phone/i18n/gl_ES.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:17+0000\n" "PO-Revision-Date: 2023-05-01 07:17+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Compañías" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creado en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "ültima actualización por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/hr.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:14+0000\n" "PO-Revision-Date: 2023-05-01 07:14+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Pozivam broj" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Odustani" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Zatvori" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Tvrtke" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Postavke" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakt" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/it.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:17+0000\n" "PO-Revision-Date: 2025-08-20 11:25+0000\n" "Last-Translator: mymage \n" "Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.10.4\n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" "Per abilitare la traduzione dei messaggi è necessaria una chiave API Google " "valida. https://cloud.google.com/translate/docs/setup" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" "Aggiungere una chiave API GIF Tenor per abilitare il supporto GIF. https://" "developers.google.com/tenor/guides/quickstart#setup" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "Dominio alias" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "Consenti l'integrazione con i plugin di posta" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" "Consenti agli utenti di sincronizzare il loro calendario con Google Calendar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" "Consenti agli utenti di sincronizzare il proprio calendario con il " "calendario di Outlook" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "Consenti agli utenti di importare dati da file CSV/XLS/XLSX/ODS" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "Permette di lavorare in un ambiente multivaluta" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "Chiave codificata base64" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Numero chiamata" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Annulla" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "CliccaXChiamare riuscito" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "CliccaXChiamare a %s" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Chiudi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "Cloudflare Turnstile" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Metodi comuni per funzionalità telefono" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Aziende" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "Azienda" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "Codice nazione" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "Informazioni azienda" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "Nome azienda" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Impostazioni di configurazione" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contatto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Crea nuovo partner" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Creare o aggiornare un partner" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Creato da" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Creato il" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Cellulare attuale" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Telefono attuale" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "Piè pagina resoconto personalizzato" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "Account cliente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "Autorizzazioni accesso predefinite" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Componi" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "Chiama telefono" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Nome visualizzato" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "Modello documento" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Completato" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Bozza" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Numero E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "E.164 equivalente al numero che chiama." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "Colore pulsante e-mail" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "Colore intestazione e-mail" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "Abilita il reset della password dalla pagina di accesso" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "E-mail fallita" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "Recupera fino al numero specificato di GIF." #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Fisso" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fisso/cellulare" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "Testo in calce visualizzato in fondo al resoconto." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "GeoLocalize" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "Ottieni immagini prodotto usando il codice a barre" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "ID" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" "Se si è configurato un dominio email catch-all reindirizzato al server Odoo, " "inserire qui il nome del dominio." #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "Se si vuole usare Twilio come fornitore di server TURN/STUN" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "In diverse situazioni, Odoo dovrà cercare un partner/contatto/dipendente... " "da un numero di telefono presentato dal soggetto chiamante. Poiché il numero " "di telefono presentato dal vostro operatore telefonico potrebbe non essere " "visualizzato in formato standard, il miglior modo per trovare il partner/" "contatto/dipendente/... relativo in Odoo è di cercare la corrispondenza tra " "la fine del numero di telefono in Odoo con gli ultimi N numeri del numero di " "telefono presentato dal soggetto chiamante. N è il numero da inserire in " "questo campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "Chiamate in arrivo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "È azienda radice" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "Autenticazione LDAP" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Ultimo aggiornamento di" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Ultimo aggiornamento il" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "Gestione inter company" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "Chiave API traduzione messaggio" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "Nazione mancante nell'azienda %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Cellulare" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "Multi valute" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Numero non trovato" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Numero convertito in formato internazinale:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Numero chiamato: %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Numero non trovato" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "Numero di utenti attivi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "Numero di aziende" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Numero di cifre" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Numero di cifre corrispondenti dalla fine" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "Numero di lingue" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "Auto completa partner" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Partner in cui verrà scritto il numero" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Partner da aggiornare" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Partner: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "ID chamata telefonica" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Mixin validazione telefono" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Numero di telefono del soggetto chiamante ottenuto dal server telefonico, " "nel formato usato dal server telefonico (non E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Numeri telefonici che non possono essere riformattati" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Numeri telefonici che non possono essere riformattati:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "Profilazione abilitata fino" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Riformatta numeri telefonici" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Riformatta tutti i numeri telefonici" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "Rendering modello ristretto" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "URL server SFU" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "Chiave server SFU" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "SMA" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Selezionare il partner da aggiornare." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" "Impostare quanti numeri devono essere identici dalla fine del numero di " "telefono per affermare la corrispondenza con un partner, un contatto, un " "dipendente, un candidato, ecc." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "Visualizza effetto" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Stato" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "Autenticazione supporto Gmail" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "Supporto autenticazione Outlook" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonia" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferenze telefonia" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "Utente modello per nuovi utenti creati attraverso l'iscrizione" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "Chiave API Tenor" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "Limite GIF Tenor" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "Filtro contenuto Tenor" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" "Il codice ISO nazione in due caratteri. \n" "Si può utilizzare per ricerche rapide." #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "Il valore del campo 'Numero di cifre corrispondenti dalla fine' deve essere " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Questa procedura guidata riformatta i numeri cellulari e fissi di tutti i " "partner con il formato internazionale standard es. +33 1 41 98 12 42" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "Token autorizzazione account Twillo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "SID account Twillo" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Rispondere al telefono che suona" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "Libreria immagine Unsplash" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Aggiorna partner esistente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "Utilizza server e-mail personalizzati" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "Utilizza server ICE Twillo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "Usa fornitore autenticazione esterno (OAuth)" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" "Gli utenti potranno comunque creare modelli.\n" "Tuttavia, solo gli editor di modelli di posta potranno creare nuovi modelli " "dinamici o modificare quelli esistenti." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "VOIP" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "Nome app web" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "https://developers.google.com/tenor/guides/content-filtering" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "reCAPTCHA" #~ msgid "Incoming calls" #~ msgstr "Chiamate in arrivo" #~ msgid "Last Modified on" #~ msgstr "Ultima modifica il" ================================================ FILE: base_phone/i18n/lt.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:18+0000\n" "PO-Revision-Date: 2023-05-01 07:18+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Atšaukti" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Įmonės" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Konfigūracijos nustatymai" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontaktas" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/nl.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:16+0000\n" "PO-Revision-Date: 2023-05-01 07:16+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Annuleren" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Bedrijven" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Configuratie instellingen" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/nl_BE.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:16+0000\n" "PO-Revision-Date: 2023-05-01 07:16+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Annuleren" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Veelvoorkomende methodes voor telefoon kenmerken" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Bedrijven" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Configuratie instellingen" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/pl.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:18+0000\n" "PO-Revision-Date: 2023-05-01 07:18+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Anuluj" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Firmy" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Ustawienia konfiguracji" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontakt" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/pt.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:19+0000\n" "PO-Revision-Date: 2023-05-01 07:19+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Empresas" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Configurações" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contacto" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Criado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Criado em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/pt_BR.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:18+0000\n" "PO-Revision-Date: 2023-05-01 07:18+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Número Chamante" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial com sucesso" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "Click2dial para %s" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Fechar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Métodos comuns para recursos do telefone" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Empresas" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Configurações" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Contato" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Criar Novo Parceiro" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Criar ou Atualizar um Parceiro" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Criado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Criado em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Móvel Atual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Telefone Atual" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Discar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Exibir Nome" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Feito" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Rascunho" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "Número E.164" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "E.164 equivalente do número de chamada." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "FIxo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fixo/Móvel" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "Identificação" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "Em várias situações, o Odoo precisará encontrar um Parceiro/Líder/" "Empregado/... a partir de um número de telefone apresentado pela parte que " "está chamando. Como os números de telefone apresentados pela operadora de " "telefonia nem sempre podem ser exibidos em um formato padrão, o melhor " "método para encontrar o Parceiro/Líder/Empregado/...relacionado no Odoo é " "tentar corresponder ao final do número de telefone no Odoo com os N últimos " "dígitos do número de telefone apresentados pela parte que está chamando. N é " "o valor que você deve inserir neste campo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Última atualização por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Última atualização em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "País ausente na empresa %s" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Celular" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Número Não Encontrado" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Número convertido para formato internacional:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Número descado: %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Número não encontrado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Número de dígitos a serem correspondidos do final" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Parceiro no qual o número de telefone será gravado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Parceiro a Atualizar" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "Parceiro: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Identificação de chamadas telefônicas" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Validação por telefone" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Número de telefone do chamador que foi obtido do servidor de telefonia, no " "formato usado pelo servidor de telefonia (não E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Números de telefone que não puderam ser reformatados" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Números de telefone que não puderam ser reformatados:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Formatar números de telefone" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Formatar todos os números de telefone" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Escolha o Parceiro a Atualizar." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Estado" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonia" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Preferências de telefonia" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "O valor do campo 'Número de dígitos que coincidem no final' deve ser " "positivo." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Este assistente reformata números de telefones fixos, móveis e de fax de " "todas as empresas no formato padrão internacional, por exemplo, +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Atenda o telefone que está tocando" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Atualizar Empresa existente" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Última Modificação no" ================================================ FILE: base_phone/i18n/pt_PT.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # # Translators: # OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-09 09:55+0000\n" "PO-Revision-Date: 2016-11-09 09:55+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" "teams/23907/pt_PT/)\n" "Language: pt_PT\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: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Cancelar" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Criado por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Criado em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Rascunho" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "ID" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/ro.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:19+0000\n" "PO-Revision-Date: 2023-05-01 07:19+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Anuleaza" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Companii" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Setări de configurare" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/ru.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:19+0000\n" "PO-Revision-Date: 2023-05-01 07:19+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Отменена" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Компании" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Конфигурационные настройки" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Контакт" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/sl_SI.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:19+0000\n" "PO-Revision-Date: 2023-05-01 07:19+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Klicna številka" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Preklic" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Click2dial uspešen" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Zaključi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Podjetja" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Uredi nastavitve" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Stik" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Ustvari novega partnerja" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Ustvari ali posodobi partnerja" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Ustvaril" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Ustvarjeno" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Trenutna mobilna številka" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Trenutna telefonska številka" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Kliči" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Prikazni naziv" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Opravljeno" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Osnutek" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "E.164 številka" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "E.164 ekvivalent klicne številke." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Fiksni" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Fiksni/Mobilni" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Zadnji posodobil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Mobilni telefon" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Številka ni najdena" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Številka pretvorjena v mednarodni format:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Številka ni najdena" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Število znakov od konca številke za primerjavo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Število znakov od konca številke za primerjavo" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Partner, pod katerega se bo zapisala telefonska številka" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Partner za posodobitev" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "ID klicatelja" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Telefonska številka klicatelja, ki je bila pridobljena iz telefonskega " "strežnika v formatu strežnika (ne E.164)." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "Telefonske številke, ki niso bile pretvorjene" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Telefonske številke, ki niso bile pretvorjene:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Pretvorba telefonskih številk" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Pretvorba vseh telefonskih številk" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Izbira partnerja za posodobitev" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Stanje" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefonija" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Nastavitve telefonije" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "Vrednost polja 'Število znakov od konca številke za primerjavo' mora biti " "pozitivna." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Čarovnik za pretvorbo telefonskih številk partnerjev v mednarodni format, " "npr, +33141981242" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Dvigni slušalko pri zvonjenju" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Ustvari ali posodobi partnerja" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" #~ msgid "Last Modified on" #~ msgstr "Zadnjič spremenjeno" ================================================ FILE: base_phone/i18n/th.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:20+0000\n" "PO-Revision-Date: 2023-05-01 07:20+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "ยกเลิก" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "บริษัท" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "ตั้งค่าการกำหนดค่า" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "ติดต่อ" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/i18n/tr.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:21+0000\n" "PO-Revision-Date: 2025-09-18 19:42+0000\n" "Last-Translator: Tamer Sezgin \n" "Language-Team: \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.10.4\n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" "Mesaj çevirisini etkinleştirmek için geçerli bir Google API anahtarı " "gereklidir. https://cloud.google.com/translate/docs/setup" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" "GIF desteğini etkinleştirmek için bir Tenor GIF API anahtarı ekleyin. " "https://developers.google.com/tenor/guides/quickstart#setup" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "Alan Rumuzu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "Mail eklentileri ile entegrasyona izin ver" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" "Kullanıcıların takvimlerini Google Takvim ile senkronize etmelerine izin ver" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" "Kullanıcıların takvimlerini Outlook Takvim ile senkronize etmelerine izin ver" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" "Kullanıcıların CSV/XLS/XLSX/ODS dosyalarından veri içe aktarmasına izin ver" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "Çoklu para birimi ortamında çalışmaya olanak tanır" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "Base64 kodlanmış anahtar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "Çağrı Numarası" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "İptal" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "Tıkla çevir başarılı" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "Click2dial'dan %s" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "Kapat" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "Cloudflare Turnstile" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "Telefon özellikleri için yaygın yöntemler" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Şirketler" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "Şirket" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "Şirket Ülke Kodu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "Şirket Bilgileri" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "Şirket Adı" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Yapılandırma Ayarları" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Kontak" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "Yeni İş Ortağı Oluştur" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "Bir iş ortağı Oluştur ya da Güncelle" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "Oluşturan" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "Oluşturuldu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "Kayıtlı Mobil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "Kayıtlı Telefon" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "Özel Rapor Altlığı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "Müşteri Hesabı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "Varsayılan Erişim Hakları" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "Çevir" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "Telefon çevir" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "Ad Görünümü" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "Belge Şablonu" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "Biten" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "Taslak" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "E.164 Numara" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "Arayan numaranın E.164 eşdeğeri." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "Email Düğmesi Rengi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "Email Başlık Rengi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "Login sayfasından parola sıfırlamayı etkinleştir" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "Başarısız Posta" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "Belirtilen sayıda GIF getir." #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "Sabit" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "Sabit/Mobil" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "Tüm raporların altında görüntülenen altlık metni." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "GeoLocalize" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "Barkod kullanarak ürün resimlerini getir" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "ID" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" "Eğer tüm e-postaları Odoo sunucusuna yönlendirilen bir alan adı kurduysanız, " "alan adını buraya girin." #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "TURN/STUN sunucu sağlayıcısı olarak Twilio kullanmak istiyorsanız" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" "Birçok durumda, Odoo arayan tarafın sunduğu bir telefon numarasından bir " "Ortak/Potansiyel Müşteri/Çalışan/... bulmak zorunda kalacaktır. Telefon " "operatörünüz tarafından sunulan telefon numaraları her zaman standart bir " "biçimde görüntülenmeyebilir, bu nedenle Odoo'da ilgili Ortak/Potansiyel Müş" "teri/Çalışan/...'ı bulmanın en iyi yöntemi, Odoo'daki telefon numarasının " "sonunu arayan tarafın sunduğu telefon numarasının son N rakamıyla " "eşleştirmeye çalışmaktır. N, bu alana girmeniz gereken değerdir." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "Gelen çağrılar" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "Kök Şirket mi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "LDAP Kimlik Doğrulama" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "Son Güncelleyen" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "Son Güncellenme" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "Şirketler Arasını Yönet" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "Mesaj Çeviri API Anahtarı" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "%s şirketinde ülke eksik" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "Mobil" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "Çoklu-Para-Birimleri" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "Numara Bulunamadı" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "Uluslarası biçime çevrilen numara:" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "Aranan numara: %s" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "Numara bulunamadı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "Aktif Kullanıcı Sayısı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "Şirket Sayısı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "Sondan eşleştirilecek rakam adedi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "Sondan eşleştirilecek rakam adedi" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "Dil Sayısı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "İş Ortağı Otomatik Tamamla" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "Telefon numarasının yazılacağı iş ortağı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "Güncellenecek iş ortağı" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "İş ortağı: %s" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "Telefon CallerID" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "Telefon Doğrulama Eklentisi" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" "Sizi arayan numaranın telefon sunucusundan alınan telefon numarası (E.164 " "değil)" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "yeniden biçimlendirilemeyen telefon numaraları " #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "Yeniden biçimlendirilemeyen telefon numaraları:" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "Profilleme etkinlik bitişi" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "Telefon numaralarını yeniden biçimlendir" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "Bütün telefon numaralarını yeniden biçimlendir" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "Şablon Görselleştirmeyi Sınırla" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "SFU Sunucu URL'i" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "SFU Sunucu anahtarı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "SMS" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "Güncellenecek iş ortağını seçin." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" "Bir iş ortağı, potansiyel müşteri, çalışan, aday vb. ile eşleştiğini " "belirtmek için telefon numarasının sonundan itibaren kaç hanenin aynı olması " "gerektiğini ayarlayın." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "Efekt Göster" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "Durumu" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "Gmail Kimlik Doğrulama Desteği" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "Outlook Kimlik Doğrulama Desteği" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "Telefon" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "Telefon Ayarları" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" "Başvuru ile kayıt yoluyla oluşturulan yeni kullanıcılar için şablon kullanıcı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "Tenor API anahtarı" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "Tenor Gif Limiti" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "Tenor içerik filtresi" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" "İki karakterden oluşan ISO ülke kodu.\n" "Bu alanı hızlı arama için kullanabilirsiniz." #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" "'Sondan eşleştirilecek rakam adedi' alanına sadece pozitif sayılar " "girilmelidir." #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" "Bu sihirbaz Cep, sabit telefon ve faks numaralarını standart E.164 " "uluslararası biçime sokar." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "Twilio Hesabı 'Auth Token'" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "Twilio Hesabı SID" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "Çalan telefonunuzu açın" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "Unsplash Resim Kütüphanesi" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "Bir iş ortağı Oluştur ya da Güncelle" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "Özel Email Sunucuları Kullan" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "Twilio ICE sunucuları kullan" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "Harici kimlik doğrulama sağlayıcılarını (OAuth) kullan" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" "Kullanıcılar şablonları oluşturmaya devam edebilecek.\n" "Ancak yalnızca Posta Şablonu Düzenleyiciler (Mail Template Editor) yeni " "dinamik şablonlar oluşturabilecek veya mevcut şablonları değiştirebilecek." #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "VoIP" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "Web Uygulaması Adı" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "https://developers.google.com/tenor/guides/content-filtering" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "reCAPTCHA" #~ msgid "Last Modified on" #~ msgstr "Son Değişiklik" ================================================ FILE: base_phone/i18n/vi_VN.po ================================================ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_phone # msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-01 07:21+0000\n" "PO-Revision-Date: 2023-05-01 07:21+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "" "A valid Google API key is required to enable message translation. https://" "cloud.google.com/translate/docs/setup" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "" "Add a Tenor GIF API key to enable GIFs support. https://developers.google." "com/tenor/guides/quickstart#setup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "Alias Domain" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin msgid "Allow integration with the mail plugins" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar msgid "Allow the users to synchronize their calendar with Google Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar msgid "Allow the users to synchronize their calendar with Outlook Calendar" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import msgid "Allow users to import data from CSV/XLS/XLSX/ODS files" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Allows to work in a multi currency environment" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "Base64 encoded key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number msgid "Calling Number" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Cancel" msgstr "Hủy bỏ" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial successfull" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Click2dial to %s" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Close" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile msgid "Cloudflare Turnstile" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_common msgid "Common methods for phone features" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_company msgid "Companies" msgstr "Công ty" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id msgid "Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "Company Country Code" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations msgid "Company Informations" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name msgid "Company Name" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_res_config_settings msgid "Config Settings" msgstr "Thiết lập cấu hình" #. module: base_phone #: model:ir.model,name:base_phone.model_res_partner msgid "Contact" msgstr "Liên hệ" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create New Partner" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Create or Update a Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid msgid "Created by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date msgid "Created on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile msgid "Current Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone msgid "Current Phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Custom Report Footer" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited msgid "Customer Account" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights msgid "Default Access Rights" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0 msgid "Dial" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Dial phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name msgid "Display Name" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id msgid "Document Template" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done msgid "Done" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft msgid "Draft" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number msgid "E.164 Number" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number msgid "E.164 equivalent of the calling number." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color msgid "Email Button Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color msgid "Email Header Color" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password msgid "Enable password reset from Login page" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter msgid "Fail Mail" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Fetch up to the specified number of GIF." msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone msgid "Fixed" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type msgid "Fixed/Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer msgid "Footer text displayed at the bottom of all reports." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize msgid "GeoLocalize" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images msgid "Get product pictures using barcode" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__id #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id msgid "ID" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id msgid "" "If you have setup a catch-all email domain redirected to the Odoo server, " "enter the domain name here." msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "If you want to use twilio as TURN/STUN server provider" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end #: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "" "In several situations, Odoo will have to find a Partner/Lead/Employee/... " "from a phone number presented by the calling party. As the phone numbers " "presented by your phone operator may not always be displayed in a standard " "format, the best method to find the related Partner/Lead/Employee/... in " "Odoo is to try to match the end of the phone number in Odoo with the N last " "digits of the phone number presented by the calling party. N is the value " "you should enter in this field." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "Incoming calls" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company msgid "Is Root Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap msgid "LDAP Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid msgid "Last Updated by" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date msgid "Last Updated on" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules msgid "Manage Inter Company" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key msgid "Message Translation API Key" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Missing country on company %s" msgstr "" #. module: base_phone #: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile msgid "Mobile" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency msgid "Multi-Currencies" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number Not Found" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Number converted to international format:" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Number dialed: %s" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_number_not_found msgid "Number not found" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count msgid "Number of Active Users" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count msgid "Number of Companies" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end #: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end msgid "Number of Digits" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end msgid "Number of Digits To Match From End" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count msgid "Number of Languages" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete msgid "Partner Autocomplete" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id msgid "Partner on which the phone number will be written" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id msgid "Partner to Update" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Partner: %s" msgstr "" #. module: base_phone #: model:res.groups,name:base_phone.group_callerid msgid "Phone CallerID" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_phone_validation_mixin msgid "Phone Validation Mixin" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number msgid "" "Phone number of calling party that has been obtained from the telephony " "server, in the format used by the telephony server (not E.164)." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted msgid "Phone numbers that couldn't be reformatted" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Phone numbers that couldn't be reformatted:" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until msgid "Profiling enabled until" msgstr "" #. module: base_phone #: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action #: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu msgid "Reformat Phone Numbers" msgstr "" #. module: base_phone #: model:ir.model,name:base_phone.model_reformat_all_phonenumbers #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "Reformat all phone numbers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "Restrict Template Rendering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url msgid "SFU Server URL" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key msgid "SFU Server key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms msgid "SMS" msgstr "" #. module: base_phone #. odoo-python #: code:addons/base_phone/wizard/number_not_found.py:0 msgid "Select the Partner to Update." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form msgid "" "Set how many digits must be identical from the end of the phone number to " "declare it as a match with a partner, a lead, an employee, a candidate, etc." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect msgid "Show Effect" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state msgid "State" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail msgid "Support Gmail Authentication" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook msgid "Support Outlook Authentication" msgstr "" #. module: base_phone #: model:ir.ui.menu,name:base_phone.menu_config_phone #: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.view_users_form msgid "Telephony Preferences" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id msgid "Template user for new users created through signup" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key msgid "Tenor API key" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit msgid "Tenor Gif Limit" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "Tenor content filter" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" #. module: base_phone #: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive msgid "" "The value of the field 'Number of Digits To Match From End' must be positive." msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form msgid "" "This wizard reformats the phone and mobile numbers of all partners in " "standard international format e.g. +33 1 41 98 12 42" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token msgid "Twilio Account Auth Token" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid msgid "Twilio Account SID" msgstr "" #. module: base_phone #. odoo-javascript #: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0 msgid "Unhook your ringing phone" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash msgid "Unsplash Image Library" msgstr "" #. module: base_phone #: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form msgid "Update Existing Partner" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default msgid "Use Custom Email Servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers msgid "Use Twilio ICE servers" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth msgid "Use external authentication providers (OAuth)" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering msgid "" "Users will still be able to render templates.\n" "However only Mail Template Editors will be able to create new dynamic " "templates or modify existing ones." msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip msgid "VoIP" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name msgid "Web App Name" msgstr "" #. module: base_phone #: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter msgid "https://developers.google.com/tenor/guides/content-filtering" msgstr "" #. module: base_phone #: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha msgid "reCAPTCHA" msgstr "" ================================================ FILE: base_phone/models/__init__.py ================================================ from . import phone_validation_mixin from . import res_company from . import res_partner from . import phone_common ================================================ FILE: base_phone/models/ir_fields_converter.py ================================================ # Copyright 2016-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, models class IrFieldsConverter(models.AbstractModel): _inherit = "ir.fields.converter" @api.model def _str_to_phone(self, model, field, value): return super()._str_to_char(model, field, value) ================================================ FILE: base_phone/models/phone_common.py ================================================ # Copyright 2010-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging from odoo import api, models _logger = logging.getLogger(__name__) try: import phonenumbers except ImportError: _logger.debug("Cannot `import phonenumbers`.") class PhoneCommon(models.AbstractModel): _name = "phone.common" _description = "Common methods for phone features" @api.model def get_name_from_phone_number(self, presented_number): """Function to get name from phone number. Usefull for use from IPBX to add CallerID name to incoming calls.""" res = self.get_record_from_phone_number(presented_number) return res[2] if res else False @api.model def get_record_from_phone_number(self, presented_number): """If it finds something, it returns (object name, ID, record name) For example : ('res.partner', 42, 'Alexis de Lattre (Akretion)') """ _logger.debug( f"Call get_name_from_phone_number with number = {presented_number}" ) if not isinstance(presented_number, str): _logger.warning( f"Number {presented_number} should be a 'str' but it is a" f" {type(presented_number)}" ) return False if not presented_number.isdigit(): _logger.warning(f"Number '{presented_number}' should only contain digits.") nr_digits_to_match_from_end = ( self.env.company.number_of_digits_to_match_from_end ) if len(presented_number) >= nr_digits_to_match_from_end: end_number_to_match = presented_number[ -nr_digits_to_match_from_end : len(presented_number) ] else: end_number_to_match = presented_number sorted_phonemodels = self._get_phone_models() for obj_dict in sorted_phonemodels: obj = obj_dict["object"] pg_search_number = "%" + end_number_to_match _logger.debug( f"Will search phone and mobile " f"numbers in {obj._name} ending " f"with '{end_number_to_match}'" ) sql = f"SELECT id FROM {obj._table} WHERE " sql_where = [] sql_args = [] for field in obj_dict["fields"]: sql_where.append(f"replace({field}, ' ', '') ilike %s") sql_args.append(pg_search_number) sql += " or ".join(sql_where) _logger.debug(f"get_record_from_phone_number sql={sql} sql_args={sql_args}") self._cr.execute(sql, tuple(sql_args)) res_sql = self._cr.fetchall() if len(res_sql) > 1: res_ids = [x[0] for x in res_sql] _logger.warning( f"There are several {obj._name} (IDS = {res_ids}) " f"with a phone number " f"ending with '{end_number_to_match}'. " f"Taking the first one." ) if res_sql: obj_id = res_sql[0][0] res_obj = obj.browse(obj_id) # Use name_get()[0][1] instead of display_name # to take the context into account with the callerid key res_obj.fetch(["display_name"]) name = res_obj.display_name res = (obj._name, res_obj.id, name) _logger.debug( f"Answer " f"get_record_from_phone_number: ({res[0]}, {res[1]}, {res[2]})" ) return res else: _logger.debug( f"No match on {obj._name} for end " f"of phone number '{end_number_to_match}'" ) return False @api.model def _get_phone_models(self): phoneobj = [] for model_name in self.env.registry.keys(): senv = False try: senv = self.with_context(callerid=True).env[model_name] except Exception: continue if ( hasattr(senv, "_phone_name_sequence") and isinstance(senv._phone_name_sequence, int) and hasattr(senv, "_phone_name_fields") and isinstance(senv._phone_name_fields, list) ): cdict = { "object": senv, "fields": senv._phone_name_fields, } phoneobj.append((senv._phone_name_sequence, cdict)) phoneobj_sorted = sorted(phoneobj, key=lambda element: element[0]) res = [] for lambd in phoneobj_sorted: res.append(lambd[1]) # [{'fields': ['phone', 'mobile'], 'object': res.partner()}, # {'fields': ['phone', 'mobile'], 'object': crm.lead()}] return res @api.model def click2dial(self, erp_number): """This function is designed to be overridden in IPBX-specific modules, such as asterisk_click2dial or ovh_telephony_connector""" return {"dialed_number": erp_number} @api.model def convert_to_dial_number(self, erp_number): """ This function is dedicated to the transformation of the number available in Odoo to the number that can be dialed. You may have to inherit this function in another module specific for your company if you are not happy with the way I reformat the numbers. """ assert erp_number, "Missing phone number" _logger.debug(f"Number before reformat = {erp_number}") # erp_number are supposed to be in International format, so no need to # give a country code here parsed_num = phonenumbers.parse(erp_number, None) country_code = self.env.company.country_id.code assert country_code, "Missing country on company" _logger.debug(f"Country code = {country_code}") to_dial_number = phonenumbers.format_out_of_country_calling_number( parsed_num, country_code.upper() ) to_dial_number = to_dial_number.translate( to_dial_number.maketrans("", "", " -.()/") ) _logger.debug(f"Number to be sent to phone system: {to_dial_number}") return to_dial_number ================================================ FILE: base_phone/models/phone_validation_mixin.py ================================================ # Copyright 2018-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models from odoo.addons.phone_validation.tools import phone_validation class PhoneValidationMixin(models.AbstractModel): _name = "phone.validation.mixin" _description = "Phone Validation Mixin" def _phone_validation_get_country(self): if "country_id" in self and self.country_id: return self.country_id if "partner_id" in self and self.partner_id and self.partner_id.country_id: return self.partner_id.country_id return self.env.company.country_id def phone_format(self, number, country=None, company=None): country = country or self._phone_validation_get_country() if not country: return number return phone_validation.phone_format( number, country.code if country else None, country.phone_code if country else None, force_format="INTERNATIONAL", raise_exception=False, ) ================================================ FILE: base_phone/models/res_company.py ================================================ # Copyright 2016-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class ResCompany(models.Model): _inherit = "res.company" number_of_digits_to_match_from_end = fields.Integer( string="Number of Digits To Match From End", default=8, help="In several situations, Odoo will have to find a " "Partner/Lead/Employee/... from a phone number presented by the " "calling party. As the phone numbers presented by your phone " "operator may not always be displayed in a standard format, " "the best method to find the related Partner/Lead/Employee/... " "in Odoo is to try to match the end of the phone number in " "Odoo with the N last digits of the phone number presented " "by the calling party. N is the value you should enter in this " "field.", ) _sql_constraints = [ ( "number_of_digits_to_match_from_end_positive", "CHECK (number_of_digits_to_match_from_end > 0)", "The value of the field 'Number of Digits To Match From End' must " "be positive.", ) ] ================================================ FILE: base_phone/models/res_partner.py ================================================ # Copyright 2016-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, models class ResPartner(models.Model): _name = "res.partner" # inherit on phone.validation.mixin (same as in crm_phone_validation, # but base_phone only depends on phone_validation, # not on crm_phone_validation) _inherit = ["res.partner", "phone.validation.mixin"] _phone_name_sequence = 10 _phone_name_fields = ["phone", "mobile"] @api.depends("name") @api.depends_context("callerid") def _compute_display_name(self): if self._context.get("callerid"): for partner in self: if partner.parent_id and partner.parent_id.is_company: name = f"{partner.parent_id.name}, {partner.name}" else: name = partner.name or "" partner.display_name = name return super()._compute_display_name() ================================================ FILE: base_phone/pyproject.toml ================================================ [build-system] requires = ["whool"] build-backend = "whool.buildapi" ================================================ FILE: base_phone/readme/CONTRIBUTORS.md ================================================ - Alexis de Lattre \<\> - Sébastien Beau \<\> - [Dixmit](https://www.dixmit.com): - Luis David Rodríguez - Enric Tobella - [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io) - Bhavesh Heliconia ================================================ FILE: base_phone/readme/DESCRIPTION.md ================================================ This module provides common methods and wizards which can be useful to develop a connector between Odoo and a telephony system. It depends on the official module *phone_validation* which handle the reformatting of phone numbers using the [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) Python library, which is a port of the library used in Android smartphones. For example, if your user is linked to a French company and you update the form view of a partner with a badly written French phone number such as '01-55-42-12-42', Odoo will automatically update the phone number to [E.164](https://en.wikipedia.org/wiki/E.164) format '+33155421242'. This module extends this reformatting to create() and write() methods. This module is used by the Odoo-Asterisk connector of the OCA. ================================================ FILE: base_phone/requirements.txt ================================================ phonenumbers ================================================ FILE: base_phone/security/ir.model.access.csv ================================================ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink callerid_res_partner_read,Read access on res.partner,base.model_res_partner,group_callerid,1,0,0,0 reformat_all_phone_number_access,Reformat All phone number access,model_reformat_all_phonenumbers,base.group_system,1,1,1,1 access_partner_not_found,Access Partner not found wizard,model_number_not_found,base.group_partner_manager,1,1,1,1 ================================================ FILE: base_phone/security/phone_security.xml ================================================ Phone CallerID ================================================ FILE: base_phone/static/description/index.html ================================================ Base Phone

Base Phone

Beta License: AGPL-3 OCA/connector-telephony Translate me on Weblate Try me on Runboat

This module provides common methods and wizards which can be useful to develop a connector between Odoo and a telephony system. It depends on the official module phone_validation which handle the reformatting of phone numbers using the phonenumbers Python library, which is a port of the library used in Android smartphones. For example, if your user is linked to a French company and you update the form view of a partner with a badly written French phone number such as ‘01-55-42-12-42’, Odoo will automatically update the phone number to E.164 format ‘+33155421242’. This module extends this reformatting to create() and write() methods.

This module is used by the Odoo-Asterisk connector of the OCA.

Table of contents

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • Akretion

Contributors

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

alexis-via

This module is part of the OCA/connector-telephony project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

================================================ FILE: base_phone/static/src/components/on_dial_button/on_dial_button.esm.js ================================================ /* Copyright 2024 Dixmit License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ import {Component} from "@odoo/owl"; import {_t} from "@web/core/l10n/translation"; import {useService} from "@web/core/utils/hooks"; export class OnDialButton extends Component { static template = "base_phone.OnDialButton"; static props = ["*"]; setup() { this.notification = useService("notification"); this.title = _t("Dial phone"); this.orm = useService("orm"); } async onClick() { await this.props.record.save(); this.click2dial(this.props.record.data[this.props.name].replace(/\s+/g, "")); } click2dial(phone_num) { this.notification.add(_t("Unhook your ringing phone"), { title: _t("Click2dial to %s", phone_num), type: "info", }); const params = { phone_number: phone_num, click2dial_model: this.model, click2dial_id: this.res_id, }; return this.orm .call("phone.common", "click2dial", [phone_num], { context: params, }) .then( (r) => { if (r === false) { this.notification.add("Click2dial failed", { type: "danger", }); } else if (typeof r === "object") { this.notification.add( _t("Number dialed: %s", r.dialed_number), { title: _t("Click2dial successfull"), type: "success", } ); if (r.action_model) { const action = { name: r.action_name, type: "ir.actions.act_window", res_model: r.action_model, view_mode: "form", views: [[false, "form"]], target: "new", context: params, }; return this.do_action(action); } } }, () => { this.notification.add("Click2dial failed", { type: "danger", }); } ); } } ================================================ FILE: base_phone/static/src/components/on_dial_button/on_dial_button.xml ================================================ Dial ================================================ FILE: base_phone/static/src/components/phone_field/phone_field.esm.js ================================================ /* Copyright 2024 Dixmit License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ import {OnDialButton} from "@base_phone/components/on_dial_button/on_dial_button.esm"; import {PhoneField} from "@web/views/fields/phone/phone_field"; import {patch} from "@web/core/utils/patch"; patch(PhoneField, { components: { ...PhoneField.components, OnDialButton, }, }); ================================================ FILE: base_phone/static/src/components/phone_field/phone_field.xml ================================================ ================================================ FILE: base_phone/tests/__init__.py ================================================ from . import test_base_phone ================================================ FILE: base_phone/tests/test_base_phone.py ================================================ # Copyright 2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo.addons.base.tests.common import BaseCommon class TestBasePhone(BaseCommon): @classmethod def setUpClass(cls): super().setUpClass() cls.fr_country_id = cls.env.ref("base.fr").id cls.phco = cls.env["phone.common"] cls.env.company.write({"country_id": cls.fr_country_id}) cls.akretion = cls.env["res.partner"].create( { "name": "Akretion France", "country_id": cls.fr_country_id, "phone": "+33 4 78 32 32 32", } ) def test_get_phone_model(self): res = self.phco._get_phone_models() self.assertIsInstance(res, list) rpo = self.env["res.partner"] self.assertTrue(any([x["object"] == rpo for x in res])) for entry in res: self.assertIsInstance(entry.get("fields"), list) def test_lookup(self): res = self.phco.get_record_from_phone_number("0478323232") self.assertIsInstance(res, tuple) self.assertEqual(res[0], "res.partner") self.assertEqual(res[1], self.akretion.id) self.assertEqual(res[2], self.akretion.with_context(callerid=True).display_name) res = self.phco.get_record_from_phone_number("0499889988") self.assertFalse(res) def test_to_dial(self): phone_to_dial = self.phco.convert_to_dial_number("+33 4 78 99 88 77") self.assertEqual(phone_to_dial, "0478998877") phone_to_dial = self.phco.convert_to_dial_number("+32 455 78 99 88") self.assertEqual(phone_to_dial, "0032455789988") def test_partner_phone_formatting(self): rpo = self.env["res.partner"] # Create an existing partner without country partner1 = rpo.create( { "name": "Pierre Paillet", "phone": "04 72 08 87 32", "mobile": "06 42 77 42 66", } ) partner1._onchange_phone_validation() partner1._onchange_mobile_validation() self.assertEqual(partner1.phone, "+33 4 72 08 87 32") self.assertEqual(partner1.mobile, "+33 6 42 77 42 66") # Create a partner with country parent_partner2 = rpo.create( { "name": "C2C", "country_id": self.env.ref("base.ch").id, "is_company": True, } ) partner2 = rpo.create( { "name": "Joël Grand-Guillaume", "parent_id": parent_partner2.id, "phone": "(0) 21 619 10 10", "mobile": "(0) 79 606 42 42", } ) partner2._onchange_phone_validation() partner2._onchange_mobile_validation() self.assertEqual(partner2.country_id, self.env.ref("base.ch")) self.assertEqual(partner2.phone, "+41 21 619 10 10") self.assertEqual(partner2.mobile, "+41 79 606 42 42") # Write on an existing partner partner3 = rpo.create( { "name": "Belgian corp", "country_id": self.env.ref("base.be").id, "is_company": True, } ) partner3.write({"phone": "(0) 2 391 43 74"}) partner3._onchange_phone_validation() self.assertEqual(partner3.phone, "+32 2 391 43 74") # Write on an existing partner with country at the same time partner3.write( { "phone": "04 72 89 32 43", "country_id": self.fr_country_id, } ) partner3._onchange_phone_validation() self.assertEqual(partner3.phone, "+33 4 72 89 32 43") # Test get_name_from_phone_number pco = self.env["phone.common"] name = pco.get_name_from_phone_number("0642774266") self.assertEqual(name, "Pierre Paillet") name2 = pco.get_name_from_phone_number("0041216191010") self.assertEqual(name2, "C2C, Joël Grand-Guillaume") ================================================ FILE: base_phone/views/res_users_view.xml ================================================ base_phone.res.users.telephony_tab res.users base_phone.user_preferences.view res.users ================================================ FILE: base_phone/wizard/__init__.py ================================================ from . import res_config_settings from . import reformat_all_phonenumbers from . import number_not_found ================================================ FILE: base_phone/wizard/number_not_found.py ================================================ # Copyright 2010-2021 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging from odoo import api, fields, models from odoo.exceptions import UserError _logger = logging.getLogger(__name__) try: import phonenumbers except ImportError: _logger.debug("Cannot `import phonenumbers`.") class NumberNotFound(models.TransientModel): _name = "number.not.found" _description = "Number not found" calling_number = fields.Char( size=64, readonly=True, help="Phone number of calling party that has been obtained from the " "telephony server, in the format used by the telephony server (not " "E.164).", ) e164_number = fields.Char( string="E.164 Number", size=64, help="E.164 equivalent of the calling number." ) number_type = fields.Selection( selection=[("phone", "Fixed"), ("mobile", "Mobile")], string="Fixed/Mobile", required=True, ) to_update_partner_id = fields.Many2one( comodel_name="res.partner", string="Partner to Update", help="Partner on which the phone number will be written", ) current_partner_phone = fields.Char( related="to_update_partner_id.phone", string="Current Phone" ) current_partner_mobile = fields.Char( related="to_update_partner_id.mobile", string="Current Mobile" ) @api.model def default_get(self, fields_list): res = super().default_get(fields_list) or {} if res.get("calling_number"): if not self.env.company.country_id: raise UserError( self.env._( "Missing country on company %s", self.env.company.display_name ) ) country_code = self.env.company.country_id.code try: parsed_num = phonenumbers.parse(res["calling_number"], country_code) res["e164_number"] = phonenumbers.format_number( parsed_num, phonenumbers.PhoneNumberFormat.INTERNATIONAL ) number_type = phonenumbers.number_type(parsed_num) if number_type == 1: res["number_type"] = "mobile" else: res["number_type"] = "phone" except Exception as e: _logger.error( "Cannot reformat the phone number '%s': %s", res["calling_number"], e, ) return res def create_partner(self): """Function called by the related button of the wizard""" self.ensure_one() parsed_num = phonenumbers.parse(self.e164_number, None) phonenumbers.number_type(parsed_num) context = dict(self._context or {}) context[f"default_{self.number_type}"] = self.e164_number action = { "name": self.env._("Create New Partner"), "view_mode": "form,tree,kanban", "res_model": "res.partner", "type": "ir.actions.act_window", "target": "current", "context": context, } return action def update_partner(self): """Function called by the related button of the wizard""" self.ensure_one() if not self.to_update_partner_id: raise UserError(self.env._("Select the Partner to Update.")) self.to_update_partner_id.write({self.number_type: self.e164_number}) action = { "name": self.env._("Partner: %s") % self.to_update_partner_id.name, "type": "ir.actions.act_window", "res_model": "res.partner", "view_mode": "form,tree,kanban", "target": "current", "res_id": self.to_update_partner_id.id, "context": self._context, } return action ================================================ FILE: base_phone/wizard/number_not_found_view.xml ================================================ number.not.found.form number.not.found

Call
================================================ FILE: voip_oca/static/src/components/call_list/call_list.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, onMounted} from "@odoo/owl"; import {_t} from "@web/core/l10n/translation"; import {registry} from "@web/core/registry"; import {useService} from "@web/core/utils/hooks"; export class CallList extends Component { setup() { super.setup(); this.voip = useService("voip_oca"); onMounted(() => this.voip.searchCalls()); } onClick(call) { this.voip.open({call: call}); } } CallList.props = {records: {type: Array}}; CallList.template = "voip_oca.CallList"; registry.category("voip_elements").add("call_list", { component: CallList, order: 10, title: _t("Calls"), input: "calls", search: (voip, value) => voip.searchCalls(value), call: (voip) => { if (voip.calls) { voip.open({call: voip.calls[0], partner: voip.calls[0]}); } }, }); ================================================ FILE: voip_oca/static/src/components/call_list/call_list.scss ================================================ .o_voip_call_item { border-bottom: 1px solid var(--border-color, #d8dadd) !important; } ================================================ FILE: voip_oca/static/src/components/call_list/call_list.xml ================================================
================================================ FILE: voip_oca/static/src/components/numpad/numpad.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, onMounted, useRef, useState} from "@odoo/owl"; import {useSelection} from "@mail/utils/common/hooks"; import {useService} from "@web/core/utils/hooks"; export class Numpad extends Component { setup() { super.setup(); this.keys = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "*", "0", "#"]; this.voip = useState(useService("voip_oca")); this.numpadValue = useRef("numpadValue"); this.selectionNumpad = useSelection({ refName: "numpadValue", model: this.voip.numpad.selection, }); onMounted(() => this.numpadValue.el.focus()); } onKeyClick(key) { const {value} = this.voip.numpad; const {selectionStart, selectionEnd} = this.numpadValue.el; this.voip.numpad.value = value.slice(0, selectionStart) + key + value.slice(selectionEnd); this.numpadValue.el.focus(); this.selectionNumpad.restore(); this.onNumpadValue({key}); } onNumpadValue(ev) { const {value} = this.voip.numpad; if (ev.key === "Enter" && value.length > 0) { this.props.onCall(); return; } this.props.onNumpadValue(ev.key); } deleteNumber() { const {value} = this.voip.numpad; if (value.length > 0) { this.voip.numpad.value = value.slice(0, -1); } } } Numpad.props = { onNumpadValue: {type: Function, optional: true}, onCall: {type: Function, optional: true}, }; Numpad.defaultProps = { // eslint-disable-next-line no-empty-function onNumpadValue: () => {}, // eslint-disable-next-line no-empty-function onCall: () => {}, }; Numpad.template = "voip_oca.Numpad"; ================================================ FILE: voip_oca/static/src/components/numpad/numpad.scss ================================================ .no-border { outline: none; } .o_numpad_input { width: 100%; } ================================================ FILE: voip_oca/static/src/components/numpad/numpad.xml ================================================
================================================ FILE: voip_oca/static/src/components/partner/partner.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component} from "@odoo/owl"; import {useService} from "@web/core/utils/hooks"; export class Partner extends Component { setup() { super.setup(); this.action = useService("action"); this.voip = useService("voip_oca"); this.agent = useService("voip_agent_oca"); this.store = useService("mail.store"); } get phoneNumber() { return ( this.props.call.phoneNumber || this.props.partner.mobileNumber || this.props.partner.landlineNumber ); } get model() { if (this.props.activity && this.props.activity.res_model) { return this.props.activity.res_model; } return "res.partner"; } get resId() { if (this.props.activity && this.props.activity.id) { return this.props.activity.id; } return this.props.partner.id; } onClose() { this.voip.call = false; this.voip.activity = false; this.voip.partner = false; } onOpenDocument() { this.action.doAction({ type: "ir.actions.act_window", res_model: this.model, views: [[false, "form"]], target: "new", res_id: this.resId, }); } onEmailClick() { this.action.doAction({ type: "ir.actions.act_window", res_model: "mail.compose.message", views: [[false, "form"]], target: "new", context: { default_model: this.model, default_res_ids: this.resId ? [this.resId] : false, default_partner_ids: this.resId ? [this.resId] : false, default_composition_mode: "comment", default_use_template: true, default_subject: "Comment", }, }); } onOpenPartnerClick() { this.action.doAction({ type: "ir.actions.act_window", res_model: "res.partner", views: [[false, "form"]], res_id: this.props.partner.id, target: "new", }); } onNewPartnerClick() { this.action.doAction({ type: "ir.actions.act_window", res_model: "res.partner", views: [[false, "form"]], target: "new", context: { default_phone: this.phoneNumber, }, }); } onScheduleActivity() { this.action.doAction({ type: "ir.actions.act_window", res_model: "mail.activity", views: [[false, "form"]], target: "new", context: { default_res_id: this.resId, default_res_model: this.model, }, }); } onCall() { this.agent.call({number: this.phoneNumber, partner: this.props.partner}); } async onMarkAsDone() { const thread = this.store.Thread.insert({ model: this.props.activity.res_model, id: this.props.activity.res_id, }); await this.props.activity.markAsDone(); await thread.fetchData(["activities"]); await this.store.fetchData({systray_get_activities: true}); this.voip.call = false; this.voip.activity = false; this.voip.partner = false; } async onEdit() { await this.props.activity.edit(); } async onDelete() { await this.props.activity.delete(); await this.env.services.orm.unlink("mail.activity", [this.props.activity.id]); this.voip.call = false; this.voip.activity = false; this.voip.partner = false; } } Partner.props = { partner: {type: Object}, activity: {type: Object, optional: true}, call: {type: Object, optional: true}, }; Partner.template = "voip_oca.Partner"; ================================================ FILE: voip_oca/static/src/components/partner/partner.xml ================================================
No contact info
Actions
Related activity
================================================ FILE: voip_oca/static/src/components/partner_list/partner_list.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, onMounted} from "@odoo/owl"; import {_t} from "@web/core/l10n/translation"; import {registry} from "@web/core/registry"; import {useService} from "@web/core/utils/hooks"; export class PartnerList extends Component { setup() { super.setup(); this.voip = useService("voip_oca"); onMounted(() => this.voip.searchPartners()); } onClick(partner) { this.voip.open({partner}); } } PartnerList.props = {records: {type: Array}}; PartnerList.template = "voip_oca.PartnerList"; registry.category("voip_elements").add("partner_list", { component: PartnerList, order: 30, title: _t("Contacts"), input: "partners", search: (voip, value) => voip.searchPartners(value), call: (voip) => { if (voip.partners) { voip.open({partner: voip.partners[0]}); } }, }); ================================================ FILE: voip_oca/static/src/components/partner_list/partner_list.scss ================================================ .o_voip_partner_item { border-bottom: 1px solid var(--border-color, #d8dadd) !important; align-items: center; .image_40 { width: 40px; height: 40px; border-radius: 0.25rem; margin-right: 10px; } } ================================================ FILE: voip_oca/static/src/components/partner_list/partner_list.xml ================================================
================================================ FILE: voip_oca/static/src/components/phone_field/phone_field.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {PhoneField} from "@web/views/fields/phone/phone_field"; import {patch} from "@web/core/utils/patch"; import {useService} from "@web/core/utils/hooks"; patch(PhoneField.prototype, { setup() { super.setup(); this.agent = useService("voip_agent_oca"); }, onPhoneClick(ev) { if (!this.agent.agent) { return; } ev.preventDefault(); ev.stopPropagation(); this.agent.call({number: this.props.record.data[this.props.name]}); }, }); ================================================ FILE: voip_oca/static/src/components/phone_field/phone_field.xml ================================================ onPhoneClick onPhoneClick onPhoneClick ================================================ FILE: voip_oca/static/src/components/softphone/softphone.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, onWillStart, useRef, useState} from "@odoo/owl"; import {Call} from "@voip_oca/components/call/call.esm"; import {Numpad} from "@voip_oca/components/numpad/numpad.esm"; import {Partner} from "@voip_oca/components/partner/partner.esm"; import {registry} from "@web/core/registry"; import {useDebounced} from "@web/core/utils/timing"; import {useService} from "@web/core/utils/hooks"; export class VoipOCASoftphone extends Component { setup() { this.voip = useState(useService("voip_oca")); this.agent = useService("voip_agent_oca"); this.searchInput = useRef("searchInput"); this.onSearchInput = useDebounced(() => { this._searchInput(this.searchInput.el.value); }, 300); onWillStart(() => this._searchInput()); } get showInput() { return Boolean( registry.category("voip_elements").get(this.voip.selectedTab).input ); } get tabElements() { return registry .category("voip_elements") .getEntries() .sort((a, b) => a[1].order - b[1].order); } get childComponent() { const element = registry.category("voip_elements").get(this.voip.selectedTab); if (element) { return element.component; } return false; } get childComponentProps() { const props = {}; const element = registry.category("voip_elements").get(this.voip.selectedTab); if (element.input) { props.records = this.voip[element.input]; } return props; } async _searchInput(value) { const element = registry.category("voip_elements").get(this.voip.selectedTab); if (element && element.search) { await element.search(this.voip, value); } } /** Action */ onClickBar() { this.voip.handleFold(); } onCall() { if (this.voip.numpadTab && this.voip.numpad.value) { return this.agent.call({number: this.voip.numpad.value}); } if (this.voip.call) { return this.agent.call({number: this.voip.call.phoneNumber}); } if (this.voip.partner) { return this.agent.call({partner: this.voip.number}); } const element = registry.category("voip_elements").get(this.voip.selectedTab); return element.call(this.voip); } onSelectTab(tag) { this.voip.selectedTab = tag; this._searchInput(); } onClosePhone(ev) { ev.preventDefault(); ev.stopPropagation(); this.voip.handleVoip(); } onOpenNumpad() { this.voip.numpadTab = !this.voip.numpadTab; } } VoipOCASoftphone.components = {Call, Numpad, Partner}; VoipOCASoftphone.props = {}; VoipOCASoftphone.template = "voip_oca.VoipOCASoftphone"; registry.category("main_components").add("voip_oca.VoipOCASoftphone", { Component: VoipOCASoftphone, }); ================================================ FILE: voip_oca/static/src/components/softphone/softphone.scss ================================================ .o_voip_softphone { width: 300px; height: auto; max-height: 70%; z-index: 99; .o_voip_softphone_header { background-color: $o-community-color !important; .o_voip_status_icon { color: $o-info; &.o_voip_connected { color: $o-success !important; } &.o_voip_disconnected { color: $o-danger !important; } &.o_voip_connecting { color: $o-warning !important; } } } .o_voip_softphone_content { display: flex; flex-direction: column; flex-grow: 1; overflow-y: auto; .nav-tabs { justify-content: space-evenly; .nav-item { flex: 1; } } } .o_voip_softphone_detail { display: flex; flex-direction: column; flex-grow: 1; overflow-y: auto; min-height: 300px; max-height: calc(60vh - 200px); } .o_voip_softphone_footer { border-top: 1px solid var(--border-color, #d8dadd) !important; } } ================================================ FILE: voip_oca/static/src/components/softphone/softphone.xml ================================================ ================================================ FILE: voip_oca/static/src/components/transfer/transfer.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, onMounted, useRef, useState} from "@odoo/owl"; export class Transfer extends Component { setup() { this.inputRef = useRef("input"); this.state = useState({value: ""}); onMounted(() => this.inputRef.el.focus()); } onKeydown(ev) { if (ev.key === "Escape") { this.props.close(); } if (ev.key === "Enter") { this.transfer(); } } transfer() { this.props.onTransfer(this.state.value); this.props.close(); } } Transfer.template = "voip_oca.Transfer"; Transfer.props = { onTransfer: {type: Function}, close: {type: Function}, }; ================================================ FILE: voip_oca/static/src/components/transfer/transfer.xml ================================================

Transfer to

================================================ FILE: voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {Component, useState} from "@odoo/owl"; import {registry} from "@web/core/registry"; import {useService} from "@web/core/utils/hooks"; export class VoipOCASystray extends Component { setup() { this.voip_oca = useState(useService("voip_oca")); } onClick() { this.voip_oca.handleVoip(); } } VoipOCASystray.props = {}; VoipOCASystray.template = "voip_oca.VoipOCASystray"; registry.category("systray").add("voip_systray_oca", {Component: VoipOCASystray}); ================================================ FILE: voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.scss ================================================ .o_nav_entry { &:hover { background-color: rgba(0, 0, 0, 0.075); } &.o_voip_disconnected { background-color: $o-danger !important; } &.o_voip_connecting { background-color: $o-warning !important; } } ================================================ FILE: voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.xml ================================================
================================================ FILE: voip_oca/static/src/core/phone/@types/model.d.ts ================================================ declare module "models" { import {Call as CallClass} from "@voip_oca/core/phone/call_model"; export interface Call extends CallClass {} export interface Thread { recipients: Follower[]; } export interface Models { Call: Call; } } ================================================ FILE: voip_oca/static/src/core/phone/call_model.esm.js ================================================ /* @odoo-module */ import {Record} from "@mail/core/common/record"; import {deserializeDateTime} from "@web/core/l10n/dates"; import {durationStr} from "../../utils/utils.esm"; /** * @typedef Data * @property {[number, string]} partner_id * @property {[number, string]} user_id * @property {[number, string]} create_uid * @property {[number, string]} write_uid * @property {String} phone_number * @property {'incoming'|'outgoing'} type_call * @property {'aborted', 'calling', 'missed', 'ongoing', 'rejected', 'terminated'} state * @property {String} activity_name * @property {String} end_date * @property {String} start_date * @property {String} create_date * @property {String} write_date */ export class Call extends Record { static id = "id"; /** @type {Object.} */ static records = {}; /** * @param {Data} data * @returns {Call} * */ static get(data) { return super.get(data); } /** * @returns {Call|Call[]} */ static insert() { return super.insert(...arguments); } /** * Deserialize the data and update the record. * @param {Data} data */ update(data) { super.update(...arguments); if (data.createDate) { this.createDate = deserializeDateTime(data.createDate); } if (data.startDate) { this.startDate = deserializeDateTime(data.startDate); } if (data.endDate) { this.endDate = deserializeDateTime(data.endDate); } } /** * Date of the call to show * @returns {Date} */ get date() { if (this.startDate) { return this.startDate; } return this.createDate; } /** * Date of the call to show * @returns {String} */ get dateStr() { return this.date.toLocaleString(luxon.DateTime.DATETIME_SHORT); } get iconTypeCall() { if (this.typeCall === "incoming") { return "fa fa-arrow-down"; } return "fa fa-arrow-up"; } /** * Duration of the call in seconds. * @returns {Number} */ get duration() { if (!this.startDate || !this.endDate) { return 0; } return (this.endDate - this.startDate) / 1000; } /** * String translation of the duration of the call. * @returns {String} */ get durationStr() { return durationStr(this.duration); } } Call.register(); ================================================ FILE: voip_oca/static/src/services/voip_agent_service.esm.js ================================================ /* global SIP */ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). This service will contain all the logic necessary for the integration with the SIP. */ import {_t} from "@web/core/l10n/translation"; import {loadBundle} from "@web/core/assets"; import {reactive} from "@odoo/owl"; import {registry} from "@web/core/registry"; export class VoipAgent { constructor(env, services) { this.toneAudio = new window.Audio(); this.callAudio = new window.Audio(); this.voip = services.voip_oca; this.multiTab = services.multi_tab; this.orm = services.orm; this.notification = services.notification; this.session = false; this.isMuted = false; this.isHolded = false; this.store = services["mail.store"]; this.connectAgent(); return reactive(this); } get hasRtcSupport() { return Boolean( navigator.mediaDevices && navigator.mediaDevices.getUserMedia && window.MediaStream ); } get agentConfig() { return { authorizationPassword: this.voip.pbx_password, authorizationUsername: this.voip.pbx_username, delegate: { onCallHangup: () => { this.voip.inCall = false; }, onInvite: this.onInvite.bind(this), onDisconnect: this._onDisconnect.bind(this), }, logBuiltinEnabled: odoo.debug !== "", logLevel: odoo.debug === "" ? "error" : "debug", transportOptions: { server: this.voip.pbx_ws, }, uri: SIP.UserAgent.makeURI( `sip:${this.voip.pbx_username}@${this.voip.pbx_domain}` ), userAgentString: `OCA SIP.js/${window.SIP.version}`, }; } async connectAgent() { if (this.voip.mode !== "prod") { console.info("Voip agent is not available in non-production mode"); return; } this.voip.status = "connecting"; if (!this.hasRtcSupport) { console.info("Voip agent is not available in this browser"); return; } if (!this.voip.pbx_ws || !this.voip.pbx_username || !this.voip.pbx_password) { console.info("Some PBX information is missing. Check your configuration"); return; } /* We want to avoid errors on the navigator. We will only load the libraries if needed */ try { await loadBundle("voip_oca.agent_assets"); } catch (error) { console.error(error); this.notification.add( _t("Failed to load the SIP.js library:\n\n%(error)s", { error: error.message, }) ); return; } try { this.agent = new SIP.UserAgent(this.agentConfig); await this.agent.start(); this.registerer = new SIP.Registerer(this.agent); this.registerer.stateChange.addListener( this._onRegistererStateChange.bind(this) ); this.registerer.register({ requestDelegate: { onReject: this._onRegistererRejected.bind(this), }, }); this.voip.status = "connected"; } catch (error) { console.error(error); this.voip.status = "disconnected"; this.notification.add( _t( "An error occurred during the instantiation of the User Agent:\n\n%(error)s", { error: error.message, } ) ); return; } } async reconnectAgent(attempt = 0) { // TODO: Show the failure in the widget somehow.... if (attempt >= 5) { this.notification.add( _t("Failed to reconnect the User Agent. Please reload the page.") ); this.voip.status = "disconnected"; return; } if (this.reconnectingAgent) { return; } this.reconnectingAgent = true; try { await this.agent.reconnect(); this.registerer.register(); this.voip.status = "connected"; } catch { // Reconnect immediately if the connection fails, then 5 seconds, then 25, 125, 625 setTimeout(() => this.reconnectAgent(attempt + 1), 5 ** attempt * 1000); } finally { this.reconnectingAgent = false; } } playTone(tone) { this.toneAudio.currentTime = 0; this.toneAudio.loop = true; this.toneAudio.src = this.voip.tones[tone]; this.toneAudio.play(); } stopTone() { this.toneAudio.pause(); } /* On call actions */ async onInvite(session) { if (this.session) { // We are busy here session.reject({statusCode: 486}); } await this.createCall({ phone_number: session.remoteIdentity.uri.user, type_call: "incoming", state: "calling", }); this.voip.inCall = true; this.voip.isOpened = true; this.voip.isFolded = false; session.stateChange.addListener(this._onSessionStateChange.bind(this)); /* TODO: Modify the VOIP Widget */ if (this.multiTab.isOnMainTab()) { // We will only play the calltone if we are on the main tab this.playTone("calltone"); // TODO; Maybe we could send a notification??? } session.delegate = { onBye: this._onHanghup.bind(this), onCancel: this._onCancelInvitation.bind(this), }; this.session = session; this.isMuted = false; this.isHolded = false; } _onDisconnect(error) { if (!error) { return; } console.error(error); this.notification.add( _t("An error occurred during the connection:\n\n%(error)s", { error: error.message, }) ); this.voip.status = "connecting"; this.reconnectAgent(); } _onSessionStateChange(newState) { switch (newState) { case SIP.SessionState.Initial: case SIP.SessionState.Terminating: case SIP.SessionState.Establishing: break; case SIP.SessionState.Terminated: // We need to stop the tone if it was not established this.stopTone(); break; case SIP.SessionState.Established: this.stopTone(); this.setCallAudio(); this.session.sessionDescriptionHandler.remoteMediaStream.onaddtrack = this.setCallAudio.bind(this); break; default: throw new Error(`Unknown session state: "${newState}".`); } } setCallAudio() { /* We need to set the call audio of the session */ const stream = new MediaStream(); for (const receiver of this.session.sessionDescriptionHandler.peerConnection.getReceivers()) { if (receiver.track) { stream.addTrack(receiver.track); } } this.callAudio.srcObject = stream; this.callAudio.play(); } updateCallAudio() { if (this.session?.sessionDescriptionHandler) { this.session.sessionDescriptionHandler.enableReceiverTracks(this.isHolded); this.session.sessionDescriptionHandler.enableSenderTracks( !this.isHolded && !this.isMuted ); } } async createCall(options) { const call = await this.orm.call("voip.call", "create_call", [ { pbx_id: this.voip.pbx_id, ...options, }, ]); this.voip.call = this.store.Call.insert(call); if (call.partner) { this.voip.partner = this.store.Persona.insert({...call.partner}); } } async call({number, partner}) { console.log(arguments); this.voip.isOpened = true; this.voip.isFolded = false; var phone_number = number; if (!number && partner) { phone_number = partner.mobileNumber || partner.landlineNumber; } this.playTone("dialtone"); await this.createCall({ partner_id: partner && partner.id, phone_number: phone_number, type_call: "outgoing", state: "calling", }); this.voip.inCall = true; if (this.voip.mode === "prod") { const destination_number = SIP.UserAgent.makeURI( `sip:${phone_number.replace(/\D/g, "")}@${this.voip.pbx_domain}` ); this.session = new SIP.Inviter(this.agent, destination_number); this.session.delegate = { onBye: this._onHanghup.bind(this), }; this.isMuted = false; this.isHolded = false; this.session.stateChange.addListener(this._onSessionStateChange.bind(this)); this.session .invite({ requestDelegate: { onAccept: this._onInviteAccepted.bind(this), onReject: this._onInviteRejected.bind(this), }, }) .catch((error) => { // This might happen, for example, if we close the call too early. this.notification.add( _t("Failed to establish the call:\n\n%(error)s", { error: error.message, }) ); }); } } transfer(number) { if (this.voip.mode !== "prod") { this._onHanghup(); return; } this.session.refer( SIP.UserAgent.makeURI(`sip:${number}@${this.voip.pbx_domain}`), { requestDelegate: { onAccept: this._onTransferAccepted.bind(this), }, } ); } _onTransferAccepted() { this.session.bye(); this._onHanghup(); } _onInviteAccepted() { if (!this.session) { return; } this.stopTone(); this.voip.acceptCall(); } _onInviteRejected(response) { if (!this.session) { return; } this.stopTone(); this.notification.add( _t("Call rejected. Reason:\n\n%(reason)s", { reason: response.message.reasonPhrase, }) ); this.voip.rejectCall(); this.session = null; } async _onCancelInvitation() { this.stopTone(); this.voip.rejectCall(); this.session = null; } async _onHanghup() { this.stopTone(); this.callAudio.srcObject = null; this.callAudio.pause(); this.voip.call.update( await this.orm.call("voip.call", "terminate_call", [[this.voip.call.id]]) ); this.voip.inCall = false; this.session = false; } async hangup() { if (this.session) { switch (this.session.state) { case SIP.SessionState.Initial: if (this.voip.call.typeCall === "outgoing") { this.session.cancel(); } else { this.session.reject(); } break; case SIP.SessionState.Establishing: this.session.cancel(); break; case SIP.SessionState.Established: this.session.bye(); break; } } this._onHanghup(); } async mute() { this.isMuted = !this.isMuted; this.updateCallAudio(); } async hold() { this.isHolded = !this.isHolded; try { await this.session.invite({ requestDelegate: { onReject() { this.isHolded = !this.isHolded; }, }, sessionDescriptionHandlerOptions: {hold: this.isHolded}, }); } catch (error) { console.error(error); this.notification.add( _t("Failed to put the call on hold/unhold:\n\n%(error)s", { error: error.message.reasonPhrase, }) ); } this.updateCallAudio(); } async accept() { if (this.session) { this.session.accept(); } this.voip.acceptCall(); } /* Registerer functions */ async _onRegistererRejected(response) { this.notification.add( _t( "An error occurred during the registration of the User Agent:\n\n%(error)s", { error: response.message.reasonPhrase, } ) ); } _onRegistererStateChange(state) { this.registererState = state; } } export const voipAgentOCAService = { dependencies: ["voip_oca", "multi_tab", "notification", "orm", "mail.store"], async start() { return new VoipAgent(...arguments); }, }; registry.category("services").add("voip_agent_oca", voipAgentOCAService); ================================================ FILE: voip_oca/static/src/services/voip_oca_service.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). This service will contain all the items necessary for the views of the voip widgets. */ import {matchString} from "../utils/utils.esm"; import {reactive} from "@odoo/owl"; import {registry} from "@web/core/registry"; import {session} from "@web/session"; import {url} from "@web/core/utils/urls"; import {user} from "@web/core/user"; export class VoipOCA { constructor(env, services) { /* Store voip data in the service, not the session */ Object.assign(this, session.voip); delete session.voip; this.status = "disconnected"; this.selectedTab = "activity_list"; this.uid = user.userId; this.store = services["mail.store"]; this.numpadTab = false; this.orm = services.orm; this.isOpened = false; this.isFolded = false; this.partner = false; this.activity = false; this.call = false; this.inCall = false; this.searchValue = ""; this.numpad = { isOpen: false, value: "", selection: { start: 0, end: 0, direction: "none", }, }; this.user = env.services.user; // We will make this service reactive, // this way we will hanble the changes on the component return reactive(this); } /* Widget Buttons */ handleVoip() { if (!this.isOpened) { this.isFolded = false; } this.isOpened = !this.isOpened; } handleFold() { this.isFolded = !this.isFolded; } async open({partner = false, activity = false, call = false}) { let partner_id = partner && partner.id; if (activity) { partner_id = activity.main_partner_id && activity.main_partner_id[0]; } else if (call) { partner_id = call.partner && call.partner.id; } this.activity = activity || {}; this.call = call || {}; this.partner = await this.orm.call("res.partner", "format_partner", [ [partner_id], ]); } async acceptCall() { this.call.update( await this.orm.call("voip.call", "accept_call", [[this.call.id]]) ); } async rejectCall() { this.call.update( await this.orm.call("voip.call", "reject_call", [[this.call.id]]) ); this.inCall = false; this.call = false; } /* Elements */ get partners() { return Object.values(this.store.Persona.records).filter( (partner) => partner.hasPhoneNumber && (!this.searchValue || [ partner.name, partner.displayName, partner.mobileNumber, partner.landlineNumber, ].some((x) => matchString(x, this.searchValue))) ); } get activities() { return Object.values(this.store.Activity.records).filter( (activity) => (!this.searchValue || [activity.summary, activity.resName, activity.main_partner].some( (x) => matchString(x, this.searchValue) )) && new Date(activity.date_deadline) <= new Date() && activity.activity_category === "phonecall" && activity.user_id[0] === this.uid ); } get calls() { return Object.values(this.store.Call.records) .filter( (call) => !this.searchValue || [call.phoneNumber, call.displayName].some((x) => matchString(x, this.searchValue) ) ) .sort((a, b) => b.date - a.date); } get partnerProps() { return { partner: this.partner || {}, activity: this.activity || {}, call: this.call || {}, }; } /* Search functions */ async searchPartners(_search = "", offset = 0, limit = 13) { const partners = await this.orm.call("res.partner", "voip_get_contacts", [], { offset, limit, _search, }); for (const partner of partners) { this.store.Persona.insert({...partner, type: "partner"}); } } async searchActivities(_search = "", offset = 0, limit = 13) { const activities = await this.orm.call( "mail.activity", "get_call_activities", [], { offset, limit, _search, } ); if (!activities["mail.activity"]) { return; } for (const activity of activities["mail.activity"]) { this.store.Activity.insert({...activity}); } } async searchCalls(_search = "", offset = 0, limit = 13) { const calls = await this.orm.call("voip.call", "get_recent_calls", [], { offset, limit, _search, }); for (const call of calls) { this.store.Call.insert({...call}); } } /* Image functions */ imagePartner(partner_id) { return url("/web/image", { model: "res.partner", id: partner_id, field: "avatar_128", }); } } export const voipOCAService = { dependencies: ["mail.store", "orm"], async start() { return new VoipOCA(...arguments); }, }; registry.category("services").add("voip_oca", voipOCAService); ================================================ FILE: voip_oca/static/src/utils/utils.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {_t} from "@web/core/l10n/translation"; export function normalize(str) { return str .toLowerCase() .replaceAll(/\p{Diacritic}/gu, "") .normalize("NFD"); } export function matchString(targetString, substring) { if (!targetString) { return false; } return normalize(targetString).includes(normalize(substring)); } export function durationStr(duration) { if (!duration) { return ""; } const minutes = Math.floor(duration / 60); const seconds = duration % 60; if (!minutes) { switch (seconds) { case 0: return _t("less than a second"); case 1: return _t("1 second"); default: return _t("%(seconds)s seconds", {seconds}); } } if (!seconds) { switch (minutes) { case 1: return _t("1 minute"); case 2: return _t("2 minutes"); default: return _t("%(minutes)s minutes", {minutes}); } } return _t("%(minutes)s min %(seconds)s sec", {minutes, seconds}); } ================================================ FILE: voip_oca/static/tests/components/ActivityTab.esm.test.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {click, start, startServer} from "@mail/../tests/mail_test_helpers"; import {expect, test} from "@odoo/hoot"; import {animationFrame} from "@odoo/hoot-dom"; import {defineVoipModels} from "../voip_test_helpers.esm"; import {patchWithCleanup} from "@web/../tests/web_test_helpers"; import {session} from "@web/session"; // As we use mail as a dependancy, we need to declare models. defineVoipModels(); test("Check Activity Tab", async () => { const pyEnv = await startServer(); const partnerId = pyEnv["res.partner"].create({ name: "Test Partner", display_name: "Test Partner", phone: "123456789", }); const activityTypeId = pyEnv["mail.activity.type"].create({ name: "Call", category: "phonecall", }); pyEnv["mail.activity"].create({ res_id: partnerId, res_model: "res.partner", user_id: pyEnv.user.id, main_partner_id: partnerId, main_partner: "Test Partner", activity_category: "phonecall", activity_type_id: activityTypeId.id, }); patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); click(".o_voip_softphone li a[name='activity_list']"); await animationFrame(); expect(".o_voip_softphone .o_voip_activity_item").toHaveCount(1); click(".o_voip_softphone .o_voip_activity_item", {text: "Test Partner"}); await animationFrame(); expect(".o_voip_softphone .o_voip_partner_header").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_actions").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_activity").toHaveCount(1); }); ================================================ FILE: voip_oca/static/tests/components/CallTab.esm.test.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {click, start, startServer} from "@mail/../tests/mail_test_helpers"; import {expect, test} from "@odoo/hoot"; import {animationFrame} from "@odoo/hoot-dom"; import {defineVoipModels} from "../voip_test_helpers.esm"; import {patchWithCleanup} from "@web/../tests/web_test_helpers"; import {session} from "@web/session"; // As we use mail as a dependancy, we need to declare models. defineVoipModels(); test("Check Call Tab", async () => { const pyEnv = await startServer(); const [partnerId1, partnerId2] = pyEnv["res.partner"].create([ { name: "Test Partner", mobile: "+34 666 666 666", }, { name: "Other Test Partner", phone: "777 777", }, ]); pyEnv["voip.call"].create([ { name: "Test Partner", phone_number: "+34 666 666 666", state: "terminated", pbx_id: 1, partner_id: partnerId1, user_id: pyEnv.user.id, start_date: "2016-12-11 05:15:00", end_date: "2016-12-11 05:30:00", create_date: "2016-12-11 05:15:00", }, { name: "Other Test Partner", phone_number: "777 777", state: "terminated", pbx_id: 1, partner_id: partnerId2, user_id: pyEnv.user.id, start_date: "2016-12-11 05:15:00", end_date: "2016-12-11 05:30:00", create_date: "2016-12-11 05:15:00", }, ]); patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); click(".o_voip_softphone li a[name='call_list']"); await animationFrame(); expect(".o_voip_softphone .o_voip_call_item").toHaveCount(2); click(".o_voip_softphone .o_voip_call_item", {text: "Test Partner"}); await animationFrame(); expect(".o_voip_softphone .o_voip_partner_header").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_actions").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_activity").toHaveCount(0); }); ================================================ FILE: voip_oca/static/tests/components/NumpadTab.esm.test.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {click, start} from "@mail/../tests/mail_test_helpers"; import {expect, test} from "@odoo/hoot"; import {animationFrame} from "@odoo/hoot-dom"; import {defineVoipModels} from "../voip_test_helpers.esm"; import {patchWithCleanup} from "@web/../tests/web_test_helpers"; import {session} from "@web/session"; // As we use mail as a dependancy, we need to declare models. defineVoipModels(); test("Check Numpad Tab", async () => { patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); click(".o_voip_softphone .o_voip_softphone_footer button[title='Open Numpad']"); await animationFrame(); expect(".o_voip_softphone .o_numpad_input").toHaveCount(1); expect(".o_voip_softphone .o_numpad_input").toHaveValue(""); expect(".o_voip_softphone .o_numpad_button").toHaveCount(12); click(".o_voip_softphone .o_numpad_button", {text: "1"}); await animationFrame(); expect(".o_voip_softphone .o_numpad_input").toHaveValue("1"); click(".o_voip_softphone .o_numpad_button", {text: "2"}); await animationFrame(); expect(".o_voip_softphone .o_numpad_input").toHaveValue("12"); click(".o_voip_softphone .o_numpad_delete"); await animationFrame(); expect(".o_voip_softphone .o_numpad_input").toHaveValue("1"); }); ================================================ FILE: voip_oca/static/tests/components/PartnerTab.esm.test.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {click, start, startServer} from "@mail/../tests/mail_test_helpers"; import {expect, test} from "@odoo/hoot"; import {animationFrame} from "@odoo/hoot-dom"; import {defineVoipModels} from "../voip_test_helpers.esm"; import {patchWithCleanup} from "@web/../tests/web_test_helpers"; import {session} from "@web/session"; // As we use mail as a dependancy, we need to declare models. defineVoipModels(); test("Check Partner Tab", async () => { const pyEnv = await startServer(); pyEnv["res.partner"].create({ name: "Test Partner", display_name: "Test Partner", mobile: "123456789", }); pyEnv["res.partner"].create({ name: "Test Partner 2", display_name: "Test Partner", mobile: "123456789", }); patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); click(".o_voip_softphone li a[name='partner_list']"); await animationFrame(); expect(".o_voip_softphone .o_voip_partner_item").toHaveCount(2); click(".o_voip_softphone .o_voip_partner_item", {text: "Test Partner"}); await animationFrame(); expect(".o_voip_softphone .o_voip_partner_header").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_actions").toHaveCount(1); expect(".o_voip_softphone .o_voip_partner_activity").toHaveCount(0); }); ================================================ FILE: voip_oca/static/tests/components/Softphone.esm.test.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {click, start} from "@mail/../tests/mail_test_helpers"; import {expect, test} from "@odoo/hoot"; import {animationFrame} from "@odoo/hoot-dom"; import {defineVoipModels} from "../voip_test_helpers.esm"; import {patchWithCleanup} from "@web/../tests/web_test_helpers"; import {session} from "@web/session"; // As we use mail as a dependancy, we need to declare models. defineVoipModels(); test("Check Not Systray", async () => { patchWithCleanup(session, { ...session, voip: {pbx_id: false}, }); await start(); expect(".o_voip_softphone").toHaveCount(0); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(0); }); test("Check Systray", async () => { patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_voip_softphone").toHaveCount(0); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(0); }); test("Check Softphone", async () => { patchWithCleanup(session, { ...session, voip: {pbx_id: 1}, }); await start(); expect(".o_menu_systray .o_nav_entry[title='Softphone']").toHaveCount(1); click(".o_menu_systray .o_nav_entry[title='Softphone']"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); expect(".o_voip_softphone .o_voip_softphone_content").toHaveCount(1); expect(".o_voip_softphone .o_voip_softphone_header").toHaveCount(1); click(".o_voip_softphone .o_voip_softphone_header"); await animationFrame(); expect(".o_voip_softphone").toHaveCount(1); expect(".o_voip_softphone .o_voip_softphone_header").toHaveCount(1); expect(".o_voip_softphone .o_voip_softphone_content").toHaveCount(0); }); ================================================ FILE: voip_oca/static/tests/mock_server/mock_models/mail_activity.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {fields} from "@web/../tests/web_test_helpers"; import {mailModels} from "@mail/../tests/mail_test_helpers"; export class MailActivity extends mailModels.MailActivity { main_partner_id = fields.Many2one({ relation: "res.partner", string: "Main Partner", }); main_partner = fields.Char(); async get_call_activities() { const items = this.search([["activity_category", "=", "phonecall"]]); return items.activity_format(); } } ================================================ FILE: voip_oca/static/tests/mock_server/mock_models/res_partner.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {mailModels} from "@mail/../tests/mail_test_helpers"; export class ResPartner extends mailModels.ResPartner { format_partner() { return { id: this[0].id, type: "partner", displayName: this[0].display_name, email: this[0].email, landlineNumber: this[0].phone, mobileNumber: this[0].mobile, name: this[0].name, }; } voip_get_contacts() { return this.search(["|", ["phone", "!=", false], ["mobile", "!=", false]]).map( (contact) => { return this.browse(contact).format_partner(); } ); } } ================================================ FILE: voip_oca/static/tests/mock_server/mock_models/voip_call.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {fields, models} from "@web/../tests/web_test_helpers"; export class VoipOcaCall extends models.ServerModel { _name = "voip.call"; phone_number = fields.Char(); name = fields.Char(); type_call = fields.Selection({ selection: [ ["incoming", "Incoming"], ["outgoing", "Outgoing"], ], default: "incoming", }); state = fields.Selection({ selection: [ ["draft", "Draft"], ["in_progress", "In Progress"], ["done", "Done"], ["cancelled", "Cancelled"], ], default: "draft", }); duration = fields.Integer({ string: "Duration", default: 0, }); pbx_id = fields.Many2one({ relation: "voip.pbx", required: true, }); partner_id = fields.Many2one({ relation: "res.partner", }); user_id = fields.Many2one({ relation: "res.users", required: true, }); start_date = fields.Datetime(); end_date = fields.Datetime(); get_recent_calls() { return this.search([["user_id", "=", this.env.user.id]]).map((item) => this.browse(item).format_call() ); } format_call() { return { id: this[0].id, creationDate: this[0].create_date, typeCall: this[0].type_call, displayName: this[0].display_name, endDate: this[0].end_date, partner: this[0].partner_id && this.env["res.partner"].browse(this[0].partner_id).format_partner(), phoneNumber: this[0].phone_number, startDate: this[0].start_date, createDate: this[0].create_date, state: this[0].state, }; } } ================================================ FILE: voip_oca/static/tests/mock_server/mock_models/voip_pbx.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {fields, models} from "@web/../tests/web_test_helpers"; export class VoipOcaPbx extends models.ServerModel { _name = "voip.pbx"; name = fields.Char(); domain = fields.Char(); ws_server = fields.Char(); mode = fields.Selection({ selection: [ ["test", "Test"], ["production", "Production"], ], default: "test", }); _records = [ { id: 1, name: "Test PBX", domain: "pbx.domain", ws_server: "wss://pbx.domain", mode: "test", }, ]; } ================================================ FILE: voip_oca/static/tests/voip_test_helpers.esm.js ================================================ /* Copyright 2025 Dixmit License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ import {MailActivity} from "./mock_server/mock_models/mail_activity.esm"; import {ResPartner} from "./mock_server/mock_models/res_partner.esm"; import {VoipOcaCall} from "./mock_server/mock_models/voip_call.esm"; import {VoipOcaPbx} from "./mock_server/mock_models/voip_pbx.esm"; import {defineModels} from "@web/../tests/web_test_helpers"; import {mailModels} from "@mail/../tests/mail_test_helpers"; export const voipModels = { MailActivity, ResPartner, VoipOcaPbx, VoipOcaCall, }; export function defineVoipModels() { return defineModels({...mailModels, ...voipModels}); } ================================================ FILE: voip_oca/tests/__init__.py ================================================ from . import test_frontend from . import test_backend from . import test_js ================================================ FILE: voip_oca/tests/test_backend.py ================================================ # Copyright 2025 Dixmit # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo.tests.common import TransactionCase class TestVoipOca(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass() cls.pbx = cls.env["voip.pbx"].create( { "name": "Test PBX", "mode": "prod", "domain": "odoo-community.com", "ws_server": "wss://odoo-community.com", } ) cls.partner_01 = cls.env["res.partner"].create( { "name": "Test Partner 01", "phone": "1234567890", } ) cls.partner_02 = cls.env["res.partner"].create( { "name": "Test Partner 01", "mobile": "0987654321", } ) cls.activity_type = cls.env["mail.activity.type"].create( { "name": "Call", "category": "phonecall", } ) cls.activity_01 = cls.env["mail.activity"].create( { "summary": "Activity 01", "activity_type_id": cls.activity_type.id, "res_id": cls.partner_01.id, "res_model_id": cls.env.ref("base.model_res_partner").id, "date_deadline": "2020-01-01", "user_id": cls.env.uid, } ) cls.activity_02 = cls.env["mail.activity"].create( { "summary": "Activity 02", "activity_type_id": cls.activity_type.id, "res_id": cls.partner_02.id, "res_model_id": cls.env.ref("base.model_res_partner").id, "date_deadline": "2020-01-01", "user_id": cls.env.uid, } ) cls.call_01 = cls.env["voip.call"].create( { "phone_number": "Call 01", "partner_id": cls.partner_01.id, "type_call": "incoming", "state": "ongoing", "pbx_id": cls.pbx.id, "start_date": "2020-01-01 00:00:00", } ) cls.call_02 = cls.env["voip.call"].create( { "phone_number": "Call 02", "type_call": "outgoing", "state": "terminated", "pbx_id": cls.pbx.id, "start_date": "2020-01-01 00:00:00", "end_date": "2020-01-01 00:01:20", } ) def test_partner_search(self): results = self.env["res.partner"].voip_get_contacts("1234567890", 0, 1000) self.assertIn(self.partner_01.id, [result["id"] for result in results]) self.assertNotIn(self.partner_02.id, [result["id"] for result in results]) results = self.env["res.partner"].voip_get_contacts("0987654321", 0, 1000) self.assertNotIn(self.partner_01.id, [result["id"] for result in results]) self.assertIn(self.partner_02.id, [result["id"] for result in results]) def test_activity_partner(self): self.assertEqual(self.activity_01.main_partner_id, self.partner_01) self.assertEqual(self.activity_01.main_partner, self.partner_01.name) self.assertEqual(self.activity_02.main_partner_id, self.partner_02) self.assertEqual(self.activity_02.main_partner, self.partner_02.name) def test_activity_search(self): results = self.env["mail.activity"].get_call_activities("Activity 01", 0, 1000)[ "mail.activity" ] self.assertIn(self.activity_01.id, [result["id"] for result in results]) self.assertNotIn(self.activity_02.id, [result["id"] for result in results]) results = self.env["mail.activity"].get_call_activities("Activity 02", 0, 1000)[ "mail.activity" ] self.assertNotIn(self.activity_01.id, [result["id"] for result in results]) self.assertIn(self.activity_02.id, [result["id"] for result in results]) def test_call_search(self): results = self.env["voip.call"].get_recent_calls("Call 01", 0, 1000) self.assertIn(self.call_01.id, [result["id"] for result in results]) self.assertNotIn(self.call_02.id, [result["id"] for result in results]) results = self.env["voip.call"].get_recent_calls("Call 02", 0, 1000) self.assertNotIn(self.call_01.id, [result["id"] for result in results]) self.assertIn(self.call_02.id, [result["id"] for result in results]) def test_call_process_ok(self): call_data = self.env["voip.call"].create_call( { "phone_number": "1234567890", "type_call": "incoming", "pbx_id": self.pbx.id, } ) call = self.env["voip.call"].browse(call_data["id"]) self.assertEqual(call.partner_id, self.partner_01) self.assertEqual(call.state, "calling") self.assertFalse(call.start_date) self.assertFalse(call.end_date) call.accept_call() self.assertEqual(call.state, "ongoing") self.assertTrue(call.start_date) self.assertFalse(call.end_date) call.terminate_call() self.assertEqual(call.state, "terminated") self.assertTrue(call.end_date) def test_call_process_rejected(self): call_data = self.env["voip.call"].create_call( { "phone_number": "1234567890", "type_call": "incoming", "pbx_id": self.pbx.id, } ) call = self.env["voip.call"].browse(call_data["id"]) self.assertEqual(call.partner_id, self.partner_01) self.assertEqual(call.state, "calling") self.assertFalse(call.start_date) self.assertFalse(call.end_date) call.reject_call() self.assertEqual(call.state, "rejected") self.assertTrue(call.end_date) self.assertFalse(call.start_date) ================================================ FILE: voip_oca/tests/test_frontend.py ================================================ # Copyright 2025 Dixmit # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). import json from uuid import uuid4 from odoo.tests import common @common.tagged("post_install", "-at_install") class TestFrontend(common.HttpCase): @classmethod def setUpClass(cls): super().setUpClass() cls.pbx = cls.env["voip.pbx"].create( { "name": "Test PBX", "mode": "prod", "domain": "odoo-community.com", "ws_server": "wss://odoo-community.com", } ) cls.user_password = "info" cls.user = common.new_test_user( cls.env, "session", email="session@in.fo", password=cls.user_password, tz="UTC", ) cls.user.write( { "voip_pbx_id": cls.pbx.id, "voip_username": False, "voip_password": False, } ) cls.payload = json.dumps(dict(jsonrpc="2.0", method="call", id=str(uuid4()))) cls.headers = { "Content-Type": "application/json", } def test_session_unconfigured(self): self.authenticate(self.user.login, self.user_password) response = self.url_open( "/web/session/get_session_info", data=self.payload, headers=self.headers ) self.assertEqual(response.status_code, 200) session_info = response.json()["result"] self.assertEqual(session_info["voip"]["pbx_id"], self.pbx.id) self.assertEqual(session_info["voip"]["mode"], "test") def test_session_configured(self): self.user.write( { "voip_username": "test", "voip_password": "test", } ) self.authenticate(self.user.login, self.user_password) response = self.url_open( "/web/session/get_session_info", data=self.payload, headers=self.headers ) self.assertEqual(response.status_code, 200) session_info = response.json()["result"] self.assertEqual(session_info["voip"]["pbx_id"], self.pbx.id) self.assertEqual(session_info["voip"]["mode"], "prod") ================================================ FILE: voip_oca/tests/test_js.py ================================================ # Copyright 2025 Dixmit # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). import odoo from odoo.addons.web.tests.test_js import WebSuite @odoo.tests.tagged("post_install", "-at_install") class TestAutomationOCA(WebSuite): """Test Automation OCA""" def get_hoot_filters(self): self._test_params = [("+", "@voip_oca")] return super().get_hoot_filters() def test_voip_oca(self): self.test_unit_desktop() ================================================ FILE: voip_oca/views/menus.xml ================================================ ================================================ FILE: voip_oca/views/res_users.xml ================================================ res.users res.users ================================================ FILE: voip_oca/views/voip_call.xml ================================================ voip.call.list voip.call Calls ir.actions.act_window voip.call list ================================================ FILE: voip_oca/views/voip_pbx.xml ================================================ voip.pbx
voip.pbx voip.pbx PBX Servers voip.pbx list,form [] {} PBX Servers